From c253fd8b448b1dce2375d2da7ac100dc5eb1b5f5 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sat, 18 Feb 2023 15:49:04 +0100 Subject: [PATCH] Update console code 'SetConsoleBackgroundColor' takes a DWORD. --- r5dev/windows/console.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r5dev/windows/console.cpp b/r5dev/windows/console.cpp index 291ac95f..e21173aa 100644 --- a/r5dev/windows/console.cpp +++ b/r5dev/windows/console.cpp @@ -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);