diff options
author | /dev/humancontroller <devhc@example.com> | 2014-07-13 19:35:05 +0200 |
---|---|---|
committer | /dev/humancontroller <devhc@example.com> | 2017-03-09 13:51:14 +0100 |
commit | c376d8ce3a59cfd6422130da52dc02848ce33818 (patch) | |
tree | c27b4446914c288dfd0c66210ae129316b26a10a | |
parent | cb53a4a10fbd7b87e359b4c8b5805747c6171d77 (diff) |
D-ize a couple of annoying Com_Printf()s
-rw-r--r-- | src/client/cl_parse.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/cl_parse.c b/src/client/cl_parse.c index 8c7c0ec6..5e481f92 100644 --- a/src/client/cl_parse.c +++ b/src/client/cl_parse.c @@ -249,13 +249,13 @@ void CL_ParseSnapshot( msg_t *msg ) { old = &cl.snapshots[newSnap.deltaNum & PACKET_MASK]; if ( !old->valid ) { // should never happen - Com_Printf ("Delta from invalid frame (not supposed to happen!).\n"); + Com_DPrintf ("Delta from invalid frame (not supposed to happen!).\n"); } else if ( old->messageNum != newSnap.deltaNum ) { // The frame that the server did the delta from // is too old, so we can't reconstruct it properly. - Com_Printf ("Delta frame too old.\n"); + Com_DPrintf ("Delta frame too old.\n"); } else if ( cl.parseEntitiesNum - old->parseEntitiesNum > MAX_PARSE_ENTITIES - MAX_SNAPSHOT_ENTITIES ) { - Com_Printf ("Delta parseEntitiesNum too old.\n"); + Com_DPrintf ("Delta parseEntitiesNum too old.\n"); } else { newSnap.valid = qtrue; // valid delta parse } |