mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Sign compare fix via boolean cast
This commit is contained in:
parent
9ab42d91cb
commit
fd247b8252
1 changed files with 1 additions and 1 deletions
|
|
@ -3175,7 +3175,7 @@ INT16 G_SometimesGetDifferentGametype(void)
|
|||
encorepossible = M_RandomChance(FRACUNIT>>3);
|
||||
break;
|
||||
}
|
||||
if (encorepossible != cv_kartencore.value)
|
||||
if (encorepossible != (boolean)cv_kartencore.value)
|
||||
return (gametype|0x80);
|
||||
}
|
||||
return gametype;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue