mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-04 18:29:41 +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;
|
game.shouldreturntopausemenu = false;
|
||||||
graphics.backgrounddrawn = false;
|
graphics.backgrounddrawn = false;
|
||||||
if (map.background == 3 || map.background || 4)
|
if (map.background == 3 || map.background == 4)
|
||||||
{
|
{
|
||||||
graphics.updatebackground(map.background);
|
graphics.updatebackground(map.background);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue