mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 14:51:46 +00:00
- 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:
parent
909daadd75
commit
e418663a26
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue