removed variable that was not required
authorHolger Schemel <info@artsoft.org>
Wed, 22 Mar 2023 18:13:54 +0000 (19:13 +0100)
committerHolger Schemel <info@artsoft.org>
Wed, 22 Mar 2023 18:13:54 +0000 (19:13 +0100)
src/game.c
src/game.h
src/init.c

index b10c4f7102ac27d3e9879f48d9d3a1bc8112324f..b7f8736a03a77ec1d932b44956ca14d871242477 100644 (file)
@@ -4515,7 +4515,6 @@ void InitGame(void)
   }
 
   game.restart_level = FALSE;
-  game.restart_game_message = NULL;
 
   game.request_active = FALSE;
   game.request_active_or_moving = FALSE;
@@ -15635,8 +15634,6 @@ void RequestQuitGame(boolean escape_key_pressed)
 
 void RequestRestartGame(char *message)
 {
-  game.restart_game_message = NULL;
-
   boolean has_started_game = hasStartedNetworkGame();
   int request_mode = (has_started_game ? REQ_ASK : REQ_CONFIRM);
   int door_state = DOOR_CLOSE_1;
@@ -15713,9 +15710,7 @@ boolean CheckRestartGame(void)
   if (!setup.ask_on_game_over)
     return FALSE;
 
-  game.restart_game_message = getRestartGameMessage();
-
-  RequestRestartGame(game.restart_game_message);
+  RequestRestartGame(getRestartGameMessage());
 
   return TRUE;
 }
index 95531163027886438ca1f202c709e173963b7b16..6ecbefc48459689311e83e6e52bc29c32c71bad0 100644 (file)
@@ -242,9 +242,6 @@ struct GameInfo
   // values for special game initialization control
   boolean restart_level;
 
-  // trigger message to ask for restarting the game
-  char *restart_game_message;
-
   // values for special request dialog control
   boolean request_active;
   boolean request_active_or_moving;
index 6605186c42351afa7c5ae78eb7a467834390361b..aae262f58332f4479498f562389b9ec9f6a7b9e4 100644 (file)
@@ -5489,7 +5489,6 @@ static void InitSetup(void)
 static void InitGameInfo(void)
 {
   game.restart_level = FALSE;
-  game.restart_game_message = NULL;
 
   game.request_active = FALSE;
   game.request_active_or_moving = FALSE;