Fixing indendation for 'switch'es.

This commit is contained in:
Murilo Pereira
2011-02-06 04:14:17 -02:00
parent 2a9d38116f
commit fc82c70b6a
5 changed files with 145 additions and 145 deletions

View File

@@ -15,14 +15,14 @@ int main(int argc, const char *argv[]) {
while (key != KEY_SPACEBAR) {
switch (key = getch()) {
case KEY_SPACEBAR:
initialize_game();
break;
case 'q':
case 'Q':
end_game();
end_curses();
exit(0);
case KEY_SPACEBAR:
initialize_game();
break;
case 'q':
case 'Q':
end_game();
end_curses();
exit(0);
}
}