Removed more unused variables.

Partially fixes Bugzilla #3782.
This commit is contained in:
Ryan C. Gordon 2009-09-15 03:19:43 +00:00
parent 815026072a
commit d56a093317
3 changed files with 3 additions and 8 deletions

View file

@ -34,7 +34,7 @@ SV_Netchan_Encode
==============
*/
static void SV_Netchan_Encode( client_t *client, msg_t *msg ) {
long reliableAcknowledge, i, index;
long i, index;
byte key, *string;
int srdc, sbit;
qboolean soob;
@ -51,7 +51,7 @@ static void SV_Netchan_Encode( client_t *client, msg_t *msg ) {
msg->readcount = 0;
msg->oob = qfalse;
reliableAcknowledge = MSG_ReadLong(msg);
/* reliableAcknowledge = */ MSG_ReadLong(msg);
msg->oob = soob;
msg->bit = sbit;