mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-02-08 01:44:14 +03:00
Fix weird bracketing in game.gamestate switch-case
It looks like one bracket got out-of-place for whatever reason. This doesn't affect the case-switch at all, due to how case-switches work, but it's still weird to look at. Indentation has been updated accordingly.
This commit is contained in:
@@ -440,6 +440,7 @@ int main(int argc, char *argv[])
|
||||
gameinput();
|
||||
gamerender();
|
||||
gamelogic();
|
||||
}
|
||||
|
||||
|
||||
break;
|
||||
@@ -484,7 +485,6 @@ int main(int argc, char *argv[])
|
||||
default:
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user