mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-31 04:02:37 +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)
|
||||
{
|
||||
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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue