mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 10:09:43 +01: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:
parent
a7b62d1098
commit
a479c61141
1 changed files with 3 additions and 6 deletions
|
@ -1087,16 +1087,13 @@ void gamelogic()
|
|||
obj.entities[i].xp += 320;
|
||||
obj.entities[i].oldxp += 320;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (obj.entities[i].xp > 310)
|
||||
else if (obj.entities[i].xp > 310)
|
||||
{
|
||||
obj.entities[i].xp -= 320;
|
||||
obj.entities[i].oldxp -= 320;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
//Do not wrap! Instead, go to the correct room
|
||||
|
|
Loading…
Reference in a new issue