diff options
author | rubidium <rubidium@openttd.org> | 2010-01-23 19:32:56 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-01-23 19:32:56 +0000 |
commit | afcce5ed9043f157cf51666ceb795fbb05828d42 (patch) | |
tree | 26b63e9d2107c2d37e31e7556cdb6f7fca6a8b73 /src | |
parent | 37b0a61b42b77422f7795a9ea01970220c80e9aa (diff) | |
download | openttd-afcce5ed9043f157cf51666ceb795fbb05828d42.tar.xz |
(svn r18901) -Change: make the default button work again for the world generation window; previously it worked due to the bug fixed in r18899. Do not add it again for the town custom number because there is no default for that one.
Diffstat (limited to 'src')
-rw-r--r-- | src/genworld_gui.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/genworld_gui.cpp b/src/genworld_gui.cpp index 0ceb5ac26..672936e31 100644 --- a/src/genworld_gui.cpp +++ b/src/genworld_gui.cpp @@ -586,7 +586,7 @@ struct GenerateLandscapeWindow : public QueryStringBaseWindow { case GLAND_START_DATE_TEXT: // Year text this->widget_id = GLAND_START_DATE_TEXT; SetDParam(0, _settings_newgame.game_creation.starting_year); - ShowQueryString(STR_JUST_INT, STR_MAPGEN_START_DATE_QUERY_CAPT, 8, 100, this, CS_NUMERAL, QSF_NONE); + ShowQueryString(STR_JUST_INT, STR_MAPGEN_START_DATE_QUERY_CAPT, 8, 100, this, CS_NUMERAL, QSF_ENABLE_DEFAULT); break; case GLAND_SNOW_LEVEL_DOWN: @@ -604,7 +604,7 @@ struct GenerateLandscapeWindow : public QueryStringBaseWindow { case GLAND_SNOW_LEVEL_TEXT: // Snow line text this->widget_id = GLAND_SNOW_LEVEL_TEXT; SetDParam(0, _settings_newgame.game_creation.snow_line_height); - ShowQueryString(STR_JUST_INT, STR_MAPGEN_SNOW_LINE_QUERY_CAPT, 3, 100, this, CS_NUMERAL, QSF_NONE); + ShowQueryString(STR_JUST_INT, STR_MAPGEN_SNOW_LINE_QUERY_CAPT, 3, 100, this, CS_NUMERAL, QSF_ENABLE_DEFAULT); break; case GLAND_TREE_PULLDOWN: // Tree placer @@ -743,7 +743,6 @@ struct GenerateLandscapeWindow : public QueryStringBaseWindow { switch (this->widget_id) { case GLAND_START_DATE_TEXT: value = DEF_START_YEAR; break; case GLAND_SNOW_LEVEL_TEXT: value = DEF_SNOWLINE_HEIGHT; break; - case GLAND_TOWN_PULLDOWN: value = 1; break; // There's not really a default default: NOT_REACHED(); } } |