mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-02-03 07:45:31 +03:00
Change a '||' to a '=='
Whoops.
This commit is contained in:
@@ -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);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user