changed function to static
authorHolger Schemel <info@artsoft.org>
Wed, 22 Mar 2023 18:17:46 +0000 (19:17 +0100)
committerHolger Schemel <info@artsoft.org>
Wed, 22 Mar 2023 18:19:42 +0000 (19:19 +0100)
src/game.c
src/game.h

index b7f8736a03a77ec1d932b44956ca14d871242477..6477029738e89dce11254f11f2ca1a398644a6f1 100644 (file)
@@ -15632,7 +15632,7 @@ void RequestQuitGame(boolean escape_key_pressed)
                     "Do you really want to quit the game?");
 }
 
-void RequestRestartGame(char *message)
+static void RequestRestartGame(char *message)
 {
   boolean has_started_game = hasStartedNetworkGame();
   int request_mode = (has_started_game ? REQ_ASK : REQ_CONFIRM);
index 6ecbefc48459689311e83e6e52bc29c32c71bad0..b73d5daff98bef27ac661508e480925a62a15057 100644 (file)
@@ -452,7 +452,6 @@ void RaiseScoreElement(int);
 
 void RequestQuitGameExt(boolean, boolean, char *);
 void RequestQuitGame(boolean);
-void RequestRestartGame(char *);
 
 boolean CheckRestartGame(void);
 boolean checkGameSolved(void);