1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-25 22:18:30 +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);
}