moved function to other code location (no functional change)
authorHolger Schemel <info@artsoft.org>
Wed, 22 Mar 2023 18:21:25 +0000 (19:21 +0100)
committerHolger Schemel <info@artsoft.org>
Wed, 22 Mar 2023 18:21:25 +0000 (19:21 +0100)
src/game.c

index 6477029738e89dce11254f11f2ca1a398644a6f1..6e0914df5e867453e176780bf7daf1d940a1ee48 100644 (file)
@@ -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;