From 80efcfa4952ad597274fb98083afb0af504063da Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Thu, 2 Aug 2018 21:50:55 +0100 Subject: [PATCH] Revert "#6383 Hide console window when in foreground mode" Actually, closing the console window is a handy way to do a clean exit. This reverts commit 25c2e360d330a563e5f8cd1b0c031baa3f0c02d3. --- src/lib/platform/MSWindowsWatchdog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/platform/MSWindowsWatchdog.cpp b/src/lib/platform/MSWindowsWatchdog.cpp index e97c2279..b31901d1 100644 --- a/src/lib/platform/MSWindowsWatchdog.cpp +++ b/src/lib/platform/MSWindowsWatchdog.cpp @@ -373,7 +373,7 @@ MSWindowsWatchdog::startProcessInForeground(String& command) return CreateProcess( NULL, LPSTR(command.c_str()), NULL, NULL, - TRUE, CREATE_NO_WINDOW, NULL, NULL, &si, &m_processInfo); + TRUE, 0, NULL, NULL, &si, &m_processInfo); } BOOL