Changeset - r14336:367269b368e4
[Not reviewed]
master
0 1 0
rubidium - 14 years ago 2010-01-23 19:32:56
rubidium@openttd.org
(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.
1 file changed with 2 insertions and 3 deletions:
0 comments (0 inline, 0 general)
src/genworld_gui.cpp
Show inline comments
 
@@ -586,7 +586,7 @@ struct GenerateLandscapeWindow : public 
 
			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 
 
			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 
 
			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();
 
			}
 
		}
0 comments (0 inline, 0 general)