Hex instead of octal colors

This commit is contained in:
mazmazz 2018-12-05 13:08:25 -05:00
parent c5b349ddc4
commit 9055c9aeab
1 changed files with 2 additions and 2 deletions

View File

@ -3457,12 +3457,12 @@ static void Command_Version_f(void)
// No ASM?
#ifdef NOASM
CONS_Printf("\205NOASM \200");
CONS_Printf("\x85" "NOASM " "\x80");
#endif
// Debug build
#ifdef _DEBUG
CONS_Printf("\205DEBUG \200");
CONS_Printf("\x85" "DEBUG " "\x80");
#endif
CONS_Printf("\n");