X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Fgame.c;h=506def33ce0682ae91f3903b2802715300dcba56;hb=f07da7d1b75d43c48bc4c6c4ac698ef119c245f7;hp=ec86a61f86edcfde7e1b1fbe15decc49a91f41b1;hpb=3c872da037d149c95f17614cb231d5bfbc1e5cc4;p=rocksndiamonds.git diff --git a/src/game.c b/src/game.c index ec86a61f..506def33 100644 --- a/src/game.c +++ b/src/game.c @@ -5161,10 +5161,15 @@ void GameEnd(void) // used instead of "level_nr" (needed for network games) int last_level_nr = levelset.level_nr; boolean tape_saved = FALSE; + boolean game_over = checkGameFailed(); // Important note: This function is not only called after "GameWon()", but also after // "game over" (if automatically asking for restarting the game is disabled in setup) + // do not handle game end if game over and automatically asking for game restart + if (game_over && setup.ask_on_game_over) + return; + // do not handle game end if request dialog is already active if (checkRequestActive()) return;