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 25c2e360d3.
This commit is contained in:
Nick Bolton 2018-08-02 21:50:55 +01:00
parent 566e2db202
commit 80efcfa495
1 changed files with 1 additions and 1 deletions

View File

@ -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