From c376d8ce3a59cfd6422130da52dc02848ce33818 Mon Sep 17 00:00:00 2001 From: /dev/humancontroller Date: Sun, 13 Jul 2014 19:35:05 +0200 Subject: D-ize a couple of annoying Com_Printf()s --- src/client/cl_parse.c | 6 +++--- 1 file 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 } -- cgit