mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-10 15:22:20 +00:00
Remove unused variable
Makes me unable to compile with harsh compiler settings
This commit is contained in:
parent
8f354ad9c1
commit
adcdb7f711
1 changed files with 0 additions and 3 deletions
|
@ -2446,7 +2446,6 @@ void D_PickVote(void)
|
||||||
SINT8 templevels[MAXPLAYERS];
|
SINT8 templevels[MAXPLAYERS];
|
||||||
SINT8 votecompare = -1;
|
SINT8 votecompare = -1;
|
||||||
UINT8 numvotes = 0, key = 0;
|
UINT8 numvotes = 0, key = 0;
|
||||||
boolean force = true;
|
|
||||||
INT32 i;
|
INT32 i;
|
||||||
|
|
||||||
for (i = 0; i < MAXPLAYERS; i++)
|
for (i = 0; i < MAXPLAYERS; i++)
|
||||||
|
@ -2460,8 +2459,6 @@ void D_PickVote(void)
|
||||||
numvotes++;
|
numvotes++;
|
||||||
if (votecompare == -1)
|
if (votecompare == -1)
|
||||||
votecompare = votes[i];
|
votecompare = votes[i];
|
||||||
else if (votes[i] != votecompare)
|
|
||||||
force = false;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue