Fix a signedness comparison warning in K_CheckBumpers.

This commit is contained in:
toaster 2022-03-17 17:01:07 +00:00
parent 8de92e8dca
commit 1ac2730ced

View file

@ -89,7 +89,7 @@ void K_CheckBumpers(void)
UINT8 i;
UINT8 numingame = 0;
SINT8 winnernum = -1;
INT32 winnerscoreadd = 0, maxroundscore = 0;
UINT32 winnerscoreadd = 0, maxroundscore = 0;
boolean nobumpers = false;
if (!(gametyperules & GTR_BUMPERS))