From 097df9076d0ab189ca9fe84cc4f61d52b607376a Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sat, 29 Aug 2020 23:04:25 -0400 Subject: fix build error on Linux/Mac --- src/SMAPI/Framework/SCore.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SMAPI/Framework/SCore.cs b/src/SMAPI/Framework/SCore.cs index 06d9eac1..53e41afb 100644 --- a/src/SMAPI/Framework/SCore.cs +++ b/src/SMAPI/Framework/SCore.cs @@ -214,7 +214,7 @@ namespace StardewModdingAPI.Framework 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.PressAnyKeyToExit(); + this.LogManager.PressAnyKeyToExit(); } #endif } -- cgit