diff options
-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 } |