mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2025-01-10 10:59:45 +01:00
Change a '||' to a '=='
Whoops.
This commit is contained in:
parent
9363cf4c40
commit
7627a37216
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ void maplogic()
|
|||
{
|
||||
game.shouldreturntopausemenu = false;
|
||||
graphics.backgrounddrawn = false;
|
||||
if (map.background == 3 || map.background || 4)
|
||||
if (map.background == 3 || map.background == 4)
|
||||
{
|
||||
graphics.updatebackground(map.background);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue