1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-23 04:58:30 +02:00

Simplify "else if" indentation for right-side tower screen wrapping

No need to make an entire else-block and indent it when you can just do
"else if" instead.
This commit is contained in:
Misa 2020-04-28 16:45:53 -07:00 committed by Ethan Lee
parent a7b62d1098
commit a479c61141

View File

@ -1087,13 +1087,10 @@ void gamelogic()
obj.entities[i].xp += 320;
obj.entities[i].oldxp += 320;
}
else
else if (obj.entities[i].xp > 310)
{
if (obj.entities[i].xp > 310)
{
obj.entities[i].xp -= 320;
obj.entities[i].oldxp -= 320;
}
obj.entities[i].xp -= 320;
obj.entities[i].oldxp -= 320;
}
}
}