mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
- fix our favorite svc_updatefrags overflow bug! weeeeee
This commit is contained in:
parent
5330fd5651
commit
5d757c0d85
1 changed files with 1 additions and 1 deletions
|
@ -613,7 +613,7 @@ SV_UpdateToReliableMessages (void)
|
|||
host_client->sendinfo = false;
|
||||
SV_FullClientUpdate (host_client, &sv.reliable_datagram);
|
||||
}
|
||||
if (host_client->old_frags != SVfloat (host_client->edict, frags)) {
|
||||
if (host_client->old_frags != (int) SVfloat (host_client->edict, frags)) {
|
||||
for (j = 0, client = svs.clients; j < MAX_CLIENTS; j++, client++) {
|
||||
if (client->state < cs_connected)
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue