mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-20 20:41:10 +00:00
level_tally_t::UseBonuses: Swap order of checks so the less expensive grandprixinfo comparison is done first
This commit is contained in:
parent
9574d7a040
commit
a6fc60a5a3
1 changed files with 1 additions and 1 deletions
|
|
@ -43,7 +43,7 @@ boolean level_tally_t::UseBonuses(void)
|
|||
}
|
||||
|
||||
// No bonuses / ranking in FREE PLAY or Time Attack
|
||||
return (K_TimeAttackRules() == false || grandprixinfo.gp == true);
|
||||
return (grandprixinfo.gp == true || K_TimeAttackRules() == false);
|
||||
}
|
||||
|
||||
void level_tally_t::DetermineBonuses(void)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue