From d076f881eb0240461581cf75e5039d666507042f Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Mon, 29 Jul 2019 21:04:17 -0700 Subject: [PATCH] Print dialog text to the console --- mist/mist.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/mist/mist.cpp b/mist/mist.cpp index 4368201..1f562fe 100644 --- a/mist/mist.cpp +++ b/mist/mist.cpp @@ -64,6 +64,7 @@ VOID CALLBACK MsgBoxHelpCallback(LPHELPINFO lpHelpInfo) void DisplayMessage(const char* message, const char* helpUrl = nullptr, MessagePriority priority = MpError, bool terminal = true) { + fprintf(CONSOLE_OUT, "%s\n", message); fprintf(LOG_OUT, "%s\n", message); if (terminal) {