mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-04-20 09:55:38 +00:00
fix crash on demo playback (correct?)
This commit is contained in:
parent
fdbca37aa9
commit
bc6c990dc9
1 changed files with 1 additions and 1 deletions
|
@ -663,7 +663,7 @@ static void CLFTE_ParseEntitiesUpdate(void)
|
|||
float newtime;
|
||||
|
||||
//so the server can know when we got it, and guess which frames we didn't get
|
||||
if (cl.ackframes_count < sizeof(cl.ackframes)/sizeof(cl.ackframes[0]))
|
||||
if (!cls.demoplayback && cl.ackframes_count < sizeof(cl.ackframes)/sizeof(cl.ackframes[0]))
|
||||
cl.ackframes[cl.ackframes_count++] = NET_QSocketGetSequenceIn(cls.netcon);
|
||||
|
||||
if (cl.protocol_pext2 & PEXT2_PREDINFO)
|
||||
|
|
Loading…
Reference in a new issue