diff --git a/Source/Core/Core/Core.cpp b/Source/Core/Core/Core.cpp index c3bbaa4515..b3c1efe461 100644 --- a/Source/Core/Core/Core.cpp +++ b/Source/Core/Core/Core.cpp @@ -140,6 +140,9 @@ std::string StopMessage(bool bMainThread, std::string Message) void DisplayMessage(const std::string& message, int time_in_ms) { + if (!IsRunning()) + return; + // Actually displaying non-ASCII could cause things to go pear-shaped for (const char& c : message) {