1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-22 17:49:43 +01:00

Fix indentation consistency

This commit is contained in:
leo60228 2021-08-31 13:51:40 -04:00 committed by Misa Elizabeth Kai
parent 52fceb3f69
commit 14c24069fd

View file

@ -2182,10 +2182,13 @@ void gameinput(void)
} }
} }
if (obj.entities[ie].onground > 0) { if (obj.entities[ie].onground > 0)
any_onground = true; {
} else if (obj.entities[ie].onroof > 0) { any_onground = true;
any_onroof = true; }
else if (obj.entities[ie].onroof > 0)
{
any_onroof = true;
} }
} }
} }