fix error message

This commit is contained in:
Jesse Plamondon-Willard 2020-01-31 00:16:48 -05:00
parent e5d8acf240
commit 1a2af714aa
No known key found for this signature in database
GPG Key ID: CF8B1456B3E29F49
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ namespace StardewModdingAPI.Framework
#else #else
if (Constants.Platform == Platform.Windows) 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(); this.PressAnyKeyToExit();
return; return;
} }