1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-09-28 09:17:23 +02: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:
Misa 2020-04-19 13:26:03 -07:00 committed by Ethan Lee
parent 4bea40fc22
commit 58e512d001

View file

@ -440,6 +440,7 @@ int main(int argc, char *argv[])
gameinput(); gameinput();
gamerender(); gamerender();
gamelogic(); gamelogic();
}
break; break;
@ -484,7 +485,6 @@ int main(int argc, char *argv[])
default: default:
break; break;
}
} }