mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-22 02:00:11 +00:00
InitSpecialUFO: fix -Wsign-compare
This commit is contained in:
parent
2dab274e17
commit
4485436eed
1 changed files with 1 additions and 1 deletions
|
|
@ -1347,7 +1347,7 @@ static mobj_t *InitSpecialUFO(waypoint_t *start)
|
|||
|
||||
if (grandprixinfo.gp && grandprixinfo.specialDamage)
|
||||
{
|
||||
ufo->health -= min(4*mobjinfo[MT_SPECIAL_UFO].spawnhealth/10, grandprixinfo.specialDamage/6);
|
||||
ufo->health -= min(4*(UINT32)mobjinfo[MT_SPECIAL_UFO].spawnhealth/10, grandprixinfo.specialDamage/6);
|
||||
}
|
||||
|
||||
return ufo;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue