From e418663a263c441763d38f7a1f72206a85a53bb3 Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Wed, 15 Nov 2017 22:20:55 -0500 Subject: [PATCH] - fixed: Reverted an accident in a previous commit where I_StartTic() was moved inappropriately. The new location fixed a mouse stutter, however, it causes net desyncs so it cannot be used here. --- src/d_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_main.cpp b/src/d_main.cpp index 4e16557479..be097ac98f 100644 --- a/src/d_main.cpp +++ b/src/d_main.cpp @@ -1053,10 +1053,10 @@ void D_DoomLoop () } else { - I_StartTic (); TryRunTics (); // will run at least one tic } // Update display, next frame, with current state. + I_StartTic (); D_Display (); if (wantToRestart) {