Quit game when collided

This commit is contained in:
jonny_l480 2023-12-13 17:40:54 +01:00
parent eac493e412
commit 5cd0f41123
2 changed files with 4 additions and 2 deletions

View File

@ -93,9 +93,9 @@ void runGameCycle()
// TODO consider game.lifesRemaining and reset if still good? // TODO consider game.lifesRemaining and reset if still good?
LOGI("game: collided with wall or self! => show leaderboard\n"); LOGI("game: collided with wall or self! => show leaderboard\n");
LOGI("DEBUG: collision currently disabled, game will continue in 1s...\n"); LOGI("DEBUG: collision currently disabled, game will continue in 1s...\n");
DELAY(1000); DELAY(800);
//game.gameState = MENU; //TODO add config.collisionEnabled option? //game.gameState = MENU; //TODO add config.collisionEnabled option?
//showLeaderboard(); showLeaderboard();
return; return;
} }

View File

@ -8,10 +8,12 @@ void showStartScreen(){
} }
void showLeaderboard(){ void showLeaderboard(){
game.gameState = EXIT;
return; return;
} }
void showPauseScreen(){ void showPauseScreen(){
game.gameState = PAUSED;
return; return;
} }