From 6b417315af07f106d3ad9c7260553624f7f7ed79 Mon Sep 17 00:00:00 2001 From: Mark de Wever Date: Sat, 24 Feb 2007 23:29:10 +0000 Subject: [PATCH] fixed a compiler warning --- src/gamestatus.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gamestatus.hpp b/src/gamestatus.hpp index 0264e919f2a..40481d1cb2c 100644 --- a/src/gamestatus.hpp +++ b/src/gamestatus.hpp @@ -63,7 +63,7 @@ struct player_info class game_state : public variable_set { public: - game_state() : difficulty("NORMAL"), recursive_(false) {} + game_state() : recursive_(false), difficulty("NORMAL") {} std::string label; //name of the game (e.g. name of save file) std::string version; //version game was created with. std::string campaign_type; //type of the game - campaign, multiplayer etc