From 5d757c0d858144fad072decff3e96db42f4e5797 Mon Sep 17 00:00:00 2001 From: Adam Olsen Date: Mon, 24 Sep 2001 18:26:23 +0000 Subject: [PATCH] - fix our favorite svc_updatefrags overflow bug! weeeeee --- qw/source/sv_send.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qw/source/sv_send.c b/qw/source/sv_send.c index 843e911dc..23e828b85 100644 --- a/qw/source/sv_send.c +++ b/qw/source/sv_send.c @@ -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;