mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 04:21:47 +00:00
deferencoremode: Don't set to non-boolean value
Found while making general fixes to encoremode behaviour in previous commits, forgot to commit.
This commit is contained in:
parent
dcd3815228
commit
41d96a0dcc
1 changed files with 1 additions and 1 deletions
|
|
@ -864,7 +864,7 @@ void Y_VoteDrawer(void)
|
||||||
static void Y_FinalizeVote(const SINT8 level)
|
static void Y_FinalizeVote(const SINT8 level)
|
||||||
{
|
{
|
||||||
nextmap = g_voteLevels[level][0];
|
nextmap = g_voteLevels[level][0];
|
||||||
deferencoremode = (g_voteLevels[level][1] & VOTE_MOD_ENCORE);
|
deferencoremode = ((g_voteLevels[level][1] & VOTE_MOD_ENCORE) == VOTE_MOD_ENCORE);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void Y_VoteStops(SINT8 pick, SINT8 level)
|
static void Y_VoteStops(SINT8 pick, SINT8 level)
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue