From 15d60ed10a054db579e6d15c651eade3c960e65a Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 21 Oct 2018 23:45:22 -0700 Subject: [PATCH] Offer to show the troubleshooting log for terminal warnings too --- mist/mist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mist/mist.cpp b/mist/mist.cpp index 437b973..609eb1e 100644 --- a/mist/mist.cpp +++ b/mist/mist.cpp @@ -111,7 +111,7 @@ void DisplayMessage(const char* message, MessagePriority priority = MpError, boo } MessageBoxA(nullptr, message, "Moonlight Internet Streaming Tester", flags); - if (priority == MpError && terminal) { + if (priority != MpInfo && terminal) { flags = MB_YESNO | MB_TOPMOST | MB_SETFOREGROUND | MB_ICONINFORMATION; switch (MessageBoxA(nullptr, "Would you like to view the troubleshooting log?", "Moonlight Internet Streaming Tester", flags))