summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/SCore.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-01-31 00:16:48 -0500
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-01-31 22:15:37 -0500
commit1a2af714aa4ca3b7dae61e7ee980c23338240129 (patch)
tree932dba8fbf00ae6c724b103ac9c497c668be4abf /src/SMAPI/Framework/SCore.cs
parente5d8acf240f923a09bdaad3fb14b2c34847860dc (diff)
downloadSMAPI-1a2af714aa4ca3b7dae61e7ee980c23338240129.tar.gz
SMAPI-1a2af714aa4ca3b7dae61e7ee980c23338240129.tar.bz2
SMAPI-1a2af714aa4ca3b7dae61e7ee980c23338240129.zip
fix error message
Diffstat (limited to 'src/SMAPI/Framework/SCore.cs')
-rw-r--r--src/SMAPI/Framework/SCore.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SMAPI/Framework/SCore.cs b/src/SMAPI/Framework/SCore.cs
index 7e1f8770..44c495ff 100644
--- a/src/SMAPI/Framework/SCore.cs
+++ b/src/SMAPI/Framework/SCore.cs
@@ -205,7 +205,7 @@ namespace StardewModdingAPI.Framework
#else
if (Constants.Platform == Platform.Windows)
{
- this.Monitor.Log("Oops! You're running {Constants.Platform}, but this version of SMAPI is for Windows. Please reinstall SMAPI to fix this.", LogLevel.Error);
+ this.Monitor.Log($"Oops! You're running {Constants.Platform}, but this version of SMAPI is for Windows. Please reinstall SMAPI to fix this.", LogLevel.Error);
this.PressAnyKeyToExit();
return;
}