1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-09-28 17:27:23 +02:00

Change a '||' to a '=='

Whoops.
This commit is contained in:
Misa 2020-06-28 02:07:22 -07:00 committed by Ethan Lee
parent 9363cf4c40
commit 7627a37216

View file

@ -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);
}