mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
- Oops, last commit had its check inverted
This commit is contained in:
parent
5f4e4d859e
commit
09c0bed74f
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue