mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-22 04:21:23 +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
|
if (realtics <= 0) // nothing new to update
|
||||||
return;
|
return;
|
||||||
if (realtics > 5)
|
|
||||||
{
|
|
||||||
if (server)
|
|
||||||
realtics = 1;
|
realtics = 1;
|
||||||
else
|
|
||||||
realtics = 5;
|
|
||||||
}
|
|
||||||
|
|
||||||
gametime = nowtime;
|
gametime = nowtime;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue