mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-21 20:11:12 +00:00
Remove a dumb time step maybe I dunno
So with this odd conditional, if the game starts too fast (like with NOMD5), the intro ticker skips a few tics needed to start playing sounds.
This commit is contained in:
parent
08627752b2
commit
88dfa26950
1 changed files with 1 additions and 7 deletions
|
@ -4925,13 +4925,7 @@ void NetUpdate(void)
|
|||
|
||||
if (realtics <= 0) // nothing new to update
|
||||
return;
|
||||
if (realtics > 5)
|
||||
{
|
||||
if (server)
|
||||
realtics = 1;
|
||||
else
|
||||
realtics = 5;
|
||||
}
|
||||
realtics = 1;
|
||||
|
||||
gametime = nowtime;
|
||||
|
||||
|
|
Loading…
Reference in a new issue