diff options
author | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-01-31 00:16:48 -0500 |
---|---|---|
committer | Jesse Plamondon-Willard <Pathoschild@users.noreply.github.com> | 2020-01-31 22:15:37 -0500 |
commit | 1a2af714aa4ca3b7dae61e7ee980c23338240129 (patch) | |
tree | 932dba8fbf00ae6c724b103ac9c497c668be4abf /src/SMAPI/Framework/SCore.cs | |
parent | e5d8acf240f923a09bdaad3fb14b2c34847860dc (diff) | |
download | SMAPI-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.cs | 2 |
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; } |