From: Holger Schemel Date: Wed, 22 Mar 2023 18:21:25 +0000 (+0100) Subject: moved function to other code location (no functional change) X-Git-Tag: 4.3.5.3~29 X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=commitdiff_plain;h=3c036eb0bd76347ddaaf112018512c9f2a357e1f moved function to other code location (no functional change) --- diff --git a/src/game.c b/src/game.c index 64770297..6e0914df 100644 --- a/src/game.c +++ b/src/game.c @@ -15632,6 +15632,23 @@ void RequestQuitGame(boolean escape_key_pressed) "Do you really want to quit the game?"); } +static char *getRestartGameMessage(void) +{ + boolean play_again = hasStartedNetworkGame(); + static char message[MAX_OUTPUT_LINESIZE]; + char *game_over_text = "Game over!"; + char *play_again_text = " Play it again?"; + + if (level.game_engine_type == GAME_ENGINE_TYPE_MM && + game_mm.game_over_message != NULL) + game_over_text = game_mm.game_over_message; + + snprintf(message, MAX_OUTPUT_LINESIZE, "%s%s", game_over_text, + (play_again ? play_again_text : "")); + + return message; +} + static void RequestRestartGame(char *message) { boolean has_started_game = hasStartedNetworkGame(); @@ -15658,23 +15675,6 @@ static void RequestRestartGame(char *message) } } -static char *getRestartGameMessage(void) -{ - boolean play_again = hasStartedNetworkGame(); - static char message[MAX_OUTPUT_LINESIZE]; - char *game_over_text = "Game over!"; - char *play_again_text = " Play it again?"; - - if (level.game_engine_type == GAME_ENGINE_TYPE_MM && - game_mm.game_over_message != NULL) - game_over_text = game_mm.game_over_message; - - snprintf(message, MAX_OUTPUT_LINESIZE, "%s%s", game_over_text, - (play_again ? play_again_text : "")); - - return message; -} - boolean CheckRestartGame(void) { static int game_over_delay = 0;