From 7045f195f31eb4db41f38d4535dab45ed1fb427b Mon Sep 17 00:00:00 2001 From: Edward Richardson Date: Mon, 2 Dec 2013 06:23:22 +1300 Subject: [PATCH] Removed excess value from stall debug output The debug output for a stalled Arbitrator had an excess Net_Arbitrator value, bumping the gametic+counts value off the output. --- src/d_net.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_net.cpp b/src/d_net.cpp index 9c4bf14dd..37e3f589e 100644 --- a/src/d_net.cpp +++ b/src/d_net.cpp @@ -1853,7 +1853,7 @@ void TryRunTics (void) { //Send a resend request to the Arbitrator, as it's obvious we are stuck here. if (debugfile) fprintf (debugfile, "Arbitrator is slow (%i to %i)\n", - Net_Arbitrator, nettics[Net_Arbitrator], gametic+counts); + nettics[Net_Arbitrator], gametic+counts); //Send resend request to the Arbitrator. Also mark the Arbitrator as waiting to display it in the hud. if(i != 0) remoteresend[Net_Arbitrator] = players[playerfornode[Net_Arbitrator]].waiting = hadlate = true;