mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-12 22:02:12 +00:00
Fix timeout
This commit is contained in:
parent
7d00255dc4
commit
78f8a44c25
1 changed files with 1 additions and 1 deletions
|
@ -5159,7 +5159,7 @@ static void SV_SendTics(void)
|
|||
{
|
||||
// assert supposedtics[n]>=nettics[n]
|
||||
realfirsttic = supposedtics[n];
|
||||
lasttictosend = min(maketic, realfirsttic + CLIENTBACKUPTICS);
|
||||
lasttictosend = min(maketic, nettics[n] + CLIENTBACKUPTICS);
|
||||
|
||||
if (realfirsttic >= lasttictosend)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue