- 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.

This commit is contained in:
Rachael Alexanderson 2017-11-15 22:20:55 -05:00
parent 909daadd75
commit e418663a26

View file

@ -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)
{