From 1ac2730ced180f071350990a39e93b13ad26b735 Mon Sep 17 00:00:00 2001 From: toaster Date: Thu, 17 Mar 2022 17:01:07 +0000 Subject: [PATCH] Fix a signedness comparison warning in K_CheckBumpers. --- src/k_battle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_battle.c b/src/k_battle.c index b526e0fb0..20b0f47e7 100644 --- a/src/k_battle.c +++ b/src/k_battle.c @@ -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))