From a067466dd8a851cf758abf6a38932cddf1ab4f43 Mon Sep 17 00:00:00 2001 From: Cacodemon345 Date: Wed, 4 Aug 2021 23:11:50 +0600 Subject: [PATCH] SDL2: Properly print white bold text to the screen --- src/common/platform/posix/sdl/i_system.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/platform/posix/sdl/i_system.cpp b/src/common/platform/posix/sdl/i_system.cpp index 03b96b8c3e..922c228a32 100644 --- a/src/common/platform/posix/sdl/i_system.cpp +++ b/src/common/platform/posix/sdl/i_system.cpp @@ -204,7 +204,7 @@ void I_PrintStr(const char *cp) { // gray if (v < 0.33) attrib = 0x8; else if (v < 0.90) attrib = 0x7; - else attrib = 0x15; + else attrib = 0xF; } printData.AppendFormat("\033[%um",((attrib & 0x8) ? 90 : 30) + (attrib & 0x7));