summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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
commitc376d8ce3a59cfd6422130da52dc02848ce33818 (patch)
treec27b4446914c288dfd0c66210ae129316b26a10a
parentcb53a4a10fbd7b87e359b4c8b5805747c6171d77 (diff)
D-ize a couple of annoying Com_Printf()s
-rw-r--r--src/client/cl_parse.c6
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
}