diff options
author | rubidium <rubidium@openttd.org> | 2014-10-25 21:02:59 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2014-10-25 21:02:59 +0000 |
commit | dfd57f261617ada4f26f75f3c924ae7a8b426c43 (patch) | |
tree | 280693d89255805193010e202ef40725df4841d6 /src | |
parent | 7a4ed364444c1d189777d20d750532f342947024 (diff) | |
download | openttd-dfd57f261617ada4f26f75f3c924ae7a8b426c43.tar.xz |
(svn r27043) -Fix: could not enter third digit of snow line height
Diffstat (limited to 'src')
-rw-r--r-- | src/genworld_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/genworld_gui.cpp b/src/genworld_gui.cpp index 475cef8e7..6ea4b5f62 100644 --- a/src/genworld_gui.cpp +++ b/src/genworld_gui.cpp @@ -634,7 +634,7 @@ struct GenerateLandscapeWindow : public Window { case WID_GL_SNOW_LEVEL_TEXT: // Snow line text this->widget_id = WID_GL_SNOW_LEVEL_TEXT; SetDParam(0, _settings_newgame.game_creation.snow_line_height); - ShowQueryString(STR_JUST_INT, STR_MAPGEN_SNOW_LINE_QUERY_CAPT, 3, this, CS_NUMERAL, QSF_ENABLE_DEFAULT); + ShowQueryString(STR_JUST_INT, STR_MAPGEN_SNOW_LINE_QUERY_CAPT, 4, this, CS_NUMERAL, QSF_ENABLE_DEFAULT); break; case WID_GL_TREE_PULLDOWN: // Tree placer |