From: divverent Date: Wed, 30 Dec 2009 11:27:53 +0000 (+0000) Subject: remove some unwanted debug prints X-Git-Tag: xonotic-v0.1.0preview~901 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=commitdiff_plain;h=e712f18fc4eea056c6b62a9861a31d513965a2a1 remove some unwanted debug prints git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9747 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cl_input.c b/cl_input.c index c792f471..f5714fa6 100644 --- a/cl_input.c +++ b/cl_input.c @@ -1722,9 +1722,6 @@ void CL_SendMove(void) cl.lastpackettime = floor(realtime / packettime) * packettime; else cl.lastpackettime = realtime; - - if(cl.cmd.impulse) - Con_Printf("MOVEMENT DEBUGGING: Prepared impulse %d\n", cl.cmd.impulse); buf.maxsize = sizeof(data); buf.cursize = 0; @@ -1865,8 +1862,6 @@ void CL_SendMove(void) // 5 bytes MSG_WriteLong (&buf, cmd->buttons); MSG_WriteByte (&buf, cmd->impulse); - if(cmd->impulse) - Con_Printf("MOVEMENT DEBUGGING: sending impulse %d\n", cmd->impulse); // PRYDON_CLIENTCURSOR // 30 bytes MSG_WriteShort (&buf, (short)(cmd->cursor_screen[0] * 32767.0f)); diff --git a/sv_user.c b/sv_user.c index 294199ef..3f68714b 100644 --- a/sv_user.c +++ b/sv_user.c @@ -531,9 +531,6 @@ void SV_ReadClientMove (void) if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__); } - if(move->impulse) - Con_Printf("MOVEMENT DEBUGGING: received impulse %d\n", move->impulse); - // if the previous move has not been applied yet, we need to accumulate // the impulse/buttons from it if (!host_client->cmd.applied) @@ -632,11 +629,8 @@ void SV_ExecuteClientMoves(void) // execute it but it has higher // sequence count if(host_client->movesequence) - { if(move->sequence > host_client->movesequence) host_client->movement_count[(move->sequence) % NETGRAPH_PACKETS] = -1; - Con_Printf("MOVEMENT DEBUGGING: invalid packet timing (less than 0.5ms), discarded packet\n"); - } continue; } @@ -659,10 +653,6 @@ void SV_ExecuteClientMoves(void) // the server and qc frametime values must be changed temporarily prog->globals.server->frametime = sv.frametime = moveframetime; // if move is more than 50ms, split it into two moves (this matches QWSV behavior and the client prediction) - - if(host_client->cmd.impulse) - Con_Printf("MOVEMENT DEBUGGING: applying impulse %d\n", host_client->cmd.impulse); - if (sv.frametime > 0.05) { prog->globals.server->frametime = sv.frametime = moveframetime * 0.5f;