mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-26 05:51:20 +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
|
else
|
||||||
{
|
{
|
||||||
I_StartTic ();
|
|
||||||
TryRunTics (); // will run at least one tic
|
TryRunTics (); // will run at least one tic
|
||||||
}
|
}
|
||||||
// Update display, next frame, with current state.
|
// Update display, next frame, with current state.
|
||||||
|
I_StartTic ();
|
||||||
D_Display ();
|
D_Display ();
|
||||||
if (wantToRestart)
|
if (wantToRestart)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue