From fc8352965d47d726086baae033a283839bb1358c Mon Sep 17 00:00:00 2001 From: Christopher Schwarz Date: Wed, 14 Oct 2009 23:56:20 +0000 Subject: * Various small style fixes/corrections/changes (Undeference, Timbo, benmachine) * Restore /ignore functionality to a couple message types I forgot (Undeference) * Fix some color bleeds on names (Rezyn) * Fix an uninitialized buffer in featured labels (Rezyn) * Apply team colors to only the letter and not the brackets too, in cg_chatteamprefix (Undeference) * Default cg_drawcrosshairs 2, crosshairs for everything (kevlarman) --- src/client/cl_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/client') diff --git a/src/client/cl_main.c b/src/client/cl_main.c index a8b59c27..5246ccd8 100644 --- a/src/client/cl_main.c +++ b/src/client/cl_main.c @@ -2387,7 +2387,7 @@ void CL_ServersResponsePacket( const netadr_t* from, msg_t *msg, qboolean extend int numservers; byte* buffptr; byte* buffend; - char label[MAX_FEATLABEL_CHARS]; + char label[MAX_FEATLABEL_CHARS] = ""; Com_DPrintf("CL_ServersResponsePacket%s\n", (extended) ? " (extended)" : ""); -- cgit