Remove unused variable

Makes me unable to compile with harsh compiler settings
This commit is contained in:
Sally Coolatta 2022-05-01 20:00:41 -04:00
parent 8f354ad9c1
commit adcdb7f711
1 changed files with 0 additions and 3 deletions

View File

@ -2446,7 +2446,6 @@ void D_PickVote(void)
SINT8 templevels[MAXPLAYERS];
SINT8 votecompare = -1;
UINT8 numvotes = 0, key = 0;
boolean force = true;
INT32 i;
for (i = 0; i < MAXPLAYERS; i++)
@ -2460,8 +2459,6 @@ void D_PickVote(void)
numvotes++;
if (votecompare == -1)
votecompare = votes[i];
else if (votes[i] != votecompare)
force = false;
}
}