mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-15 17:21:34 +00:00
Sign compare fix via boolean cast
This commit is contained in:
parent
084b99a5c9
commit
84c2a8c28f
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…
Reference in a new issue