mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix a signedness comparison warning in K_CheckBumpers.
This commit is contained in:
parent
8de92e8dca
commit
1ac2730ced
1 changed files with 1 additions and 1 deletions
|
@ -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))
|
||||
|
|
Loading…
Add table
Reference in a new issue