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));