Only call Win32 API to enable colored output once

This commit is contained in:
WebFreak001 2023-07-05 22:23:31 +02:00 committed by Jan Jurzitza
parent b0bb905a40
commit 1201a68f66
1 changed files with 5 additions and 0 deletions

View File

@ -163,6 +163,11 @@ void enableColoredOutput()
GetConsoleMode, GetStdHandle, HANDLE, INVALID_HANDLE_VALUE, GetConsoleMode, GetStdHandle, HANDLE, INVALID_HANDLE_VALUE,
SetConsoleMode, STD_OUTPUT_HANDLE; SetConsoleMode, STD_OUTPUT_HANDLE;
static bool enabledColor = false;
if (enabledColor)
return;
enabledColor = true;
// Set output mode to handle virtual terminal sequences // Set output mode to handle virtual terminal sequences
HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE); HANDLE hOut = GetStdHandle(STD_OUTPUT_HANDLE);
if (hOut == INVALID_HANDLE_VALUE) if (hOut == INVALID_HANDLE_VALUE)