From 09c0bed74fe38653c7e7c59606a2ee09d39e161a Mon Sep 17 00:00:00 2001 From: Magnus Norddahl Date: Tue, 20 Mar 2018 01:29:43 +0100 Subject: [PATCH] - Oops, last commit had its check inverted --- 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 9535a4342..7681626d0 100644 --- a/src/d_net.cpp +++ b/src/d_net.cpp @@ -1915,7 +1915,7 @@ void TryRunTics (void) Net_CheckLastReceived (counts); // Update time returned by I_GetTime, but only if we are stuck in this loop - if (lowtic >= gametic + counts) + if (lowtic < gametic + counts) I_SetFrameTime(); // don't stay in here forever -- give the menu a chance to work