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:
parent
52fceb3f69
commit
14c24069fd
1 changed files with 7 additions and 4 deletions
|
@ -2182,10 +2182,13 @@ void gameinput(void)
|
|||
}
|
||||
}
|
||||
|
||||
if (obj.entities[ie].onground > 0) {
|
||||
any_onground = true;
|
||||
} else if (obj.entities[ie].onroof > 0) {
|
||||
any_onroof = true;
|
||||
if (obj.entities[ie].onground > 0)
|
||||
{
|
||||
any_onground = true;
|
||||
}
|
||||
else if (obj.entities[ie].onroof > 0)
|
||||
{
|
||||
any_onroof = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue