hopefully fixes a couple of things.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1669 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2005-12-06 02:17:55 +00:00
parent 48dbcfa193
commit a8de363078
1 changed files with 9 additions and 0 deletions

View File

@ -422,6 +422,15 @@ void SV_CSQC_DroppedPacket(client_t *client, int sequence)
if (client->csqcentsequence[i] == sequence)
client->csqcentversions[i]--; //do that update thang (but later).
}
void SV_CSQC_DropAll(client_t *client)
{
int i;
if (!(client->csqcactive)) //we don't need this, but it might be a little faster.
return;
for (i = 0; i < sv.num_edicts; i++)
client->csqcentversions[i]--; //do that update thang (but later).
}
#endif
//=============================================================================