summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorChristopher Schwarz <lakitu7@gmail.com>2011-02-02 22:21:55 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:17:57 +0000
commit78228ad1d5578ed875ee80764372a9f2919310ee (patch)
tree84ed4f61c500fb029aaceaf1b710e7d8bff88bf6 /src/game
parent2116ed4483f21171f49b6c8f64f2dd3c55fb6925 (diff)
* Fix color bleeds between fields in namelog (again)
Diffstat (limited to 'src/game')
-rw-r--r--src/game/g_admin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/g_admin.c b/src/game/g_admin.c
index b503adea..73af7084 100644
--- a/src/game/g_admin.c
+++ b/src/game/g_admin.c
@@ -2666,7 +2666,7 @@ static void namelog_out( void *namelog, char *str )
for( i = 0; i < MAX_NAMELOG_NAMES && n->name[ i ][ 0 ]; i++ )
{
- l = Q_snprintf( p, l2, " '%s%s'%s", n->name[ i ], scolor,
+ l = Q_snprintf( p, l2, " '" S_COLOR_WHITE "%s%s'%s", n->name[ i ], scolor,
i == n->nameOffset ? "*" : "" );
p += l;
l2 -= l;