Merge pull request #1059 from lemondrops/bugfix/force_debug

Fix the debug console window not appearing.
This commit is contained in:
Miran Grča
2020-11-13 19:36:18 +01:00
committed by GitHub

View File

@@ -366,10 +366,6 @@ WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPSTR lpszArg, int nCmdShow)
/* First, set our (default) language. */
set_language(0x0409);
/* Create console window. */
if (force_debug)
CreateConsole(1);
/* Process the command line for options. */
argc = ProcessCommandLine(&argw);
@@ -391,8 +387,11 @@ WinMain(HINSTANCE hInst, HINSTANCE hPrev, LPSTR lpszArg, int nCmdShow)
if (enable_crashdump)
InitCrashDump();
if (force_debug)
/* Create console window. */
if (force_debug) {
CreateConsole(1);
atexit(CloseConsole);
}
/* Handle our GUI. */
i = ui_init(nCmdShow);