diff options
-rw-r--r-- | src/game/g_client.c | 6 | ||||
-rw-r--r-- | src/sys/sys_main.c | 2 |
2 files changed, 2 insertions, 6 deletions
diff --git a/src/game/g_client.c b/src/game/g_client.c index 2ac76c73..173d2976 100644 --- a/src/game/g_client.c +++ b/src/game/g_client.c @@ -850,11 +850,7 @@ static void G_ClientCleanName( const char *in, char *out, int outSize ) *out++ = Q_COLOR_ESCAPE; - // don't allow black in a name, period - if( ColorIndex( *in ) == 0 ) - *out++ = COLOR_WHITE; - else - *out++ = *in; + *out++ = *in; len += 2; continue; diff --git a/src/sys/sys_main.c b/src/sys/sys_main.c index f76cb014..f1aa6fa8 100644 --- a/src/sys/sys_main.c +++ b/src/sys/sys_main.c @@ -211,7 +211,7 @@ void Sys_AnsiColorPrint( const char *msg ) int length = 0; static int q3ToAnsi[ 8 ] = { - 30, // COLOR_BLACK + 7, // COLOR_BLACK 31, // COLOR_RED 32, // COLOR_GREEN 33, // COLOR_YELLOW |