From 9055c9aeab6148ce25aac85495286f36e03dd0a8 Mon Sep 17 00:00:00 2001
From: mazmazz <mar.marcoz@outlook.com>
Date: Wed, 5 Dec 2018 13:08:25 -0500
Subject: [PATCH] Hex instead of octal colors

---
 src/d_netcmd.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/d_netcmd.c b/src/d_netcmd.c
index 951959311e..385cde3bc7 100644
--- a/src/d_netcmd.c
+++ b/src/d_netcmd.c
@@ -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");
-- 
GitLab