diff options
author | Christopher Schwarz <lakitu7@gmail.com> | 2009-10-14 23:56:20 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:16:51 +0000 |
commit | fc8352965d47d726086baae033a283839bb1358c (patch) | |
tree | a46dd5f6e7885dd3b0fcc3d818e671b875e8ac4d /src/client | |
parent | 20b6c68b9511adddf32030f5785eb2667a7f0e8c (diff) |
* 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)
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/cl_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
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)" : ""); |