From ed0ee3ffb38af1bc5d7e74fd8d26de0c6b863ff8 Mon Sep 17 00:00:00 2001 From: rubidium Date: Mon, 22 Sep 2014 19:21:37 +0000 Subject: [PATCH] (svn r26911) -Change: increase maximum possible flat land height in scenario editor to be entered directly (ic111) --- src/genworld_gui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/genworld_gui.cpp b/src/genworld_gui.cpp index f94f756759..438da5e4b6 100644 --- a/src/genworld_gui.cpp +++ b/src/genworld_gui.cpp @@ -1002,7 +1002,7 @@ struct CreateScenarioWindow : public Window case WID_CS_FLAT_LAND_HEIGHT_TEXT: // Height level text this->widget_id = WID_CS_FLAT_LAND_HEIGHT_TEXT; SetDParam(0, _settings_newgame.game_creation.se_flat_world_height); - ShowQueryString(STR_JUST_INT, STR_SE_MAPGEN_FLAT_WORLD_HEIGHT_QUERY_CAPT, 3, this, CS_NUMERAL, QSF_NONE); + ShowQueryString(STR_JUST_INT, STR_SE_MAPGEN_FLAT_WORLD_HEIGHT_QUERY_CAPT, 4, this, CS_NUMERAL, QSF_NONE); break; } }