Update console code

'SetConsoleBackgroundColor' takes a DWORD.
This commit is contained in:
Kawe Mazidjatari 2023-02-18 15:49:04 +01:00
parent 526179878d
commit c253fd8b44

View File

@ -110,7 +110,7 @@ void Console_Init()
MessageBoxA(NULL, "Failed to set console mode 'VirtualTerminalLevel'.\n"
"Please omit the '-ansiclr' parameter and restart \nthe game if output logging appears distorted.", "SDK Warning", MB_ICONEXCLAMATION | MB_OK);
}
SetConsoleBackgroundColor(0x0000);
SetConsoleBackgroundColor(0x00000000);
AnsiColors_Init();
}
SetConsoleCtrlHandler(ConsoleHandlerRoutine, true);