mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-10 19:09:45 +01:00
Fix Game::anything_unlocked() always evaluating to true
Whoops.
This commit is contained in:
parent
22738cdb97
commit
9363cf4c40
1 changed files with 1 additions and 1 deletions
|
@ -7641,7 +7641,7 @@ bool Game::anything_unlocked()
|
||||||
{
|
{
|
||||||
if (unlock[i] &&
|
if (unlock[i] &&
|
||||||
(i == 8 // Secret Lab
|
(i == 8 // Secret Lab
|
||||||
|| i >= 9 || i <= 14 // any Time Trial
|
|| (i >= 9 && i <= 14) // any Time Trial
|
||||||
|| i == 16 // Intermission replays
|
|| i == 16 // Intermission replays
|
||||||
|| i == 17 // No Death Mode
|
|| i == 17 // No Death Mode
|
||||||
|| i == 18)) // Flip Mode
|
|| i == 18)) // Flip Mode
|
||||||
|
|
Loading…
Reference in a new issue