Changeset - r14033:b53b33f30719
[Not reviewed]
master
0 1 0
rubidium - 14 years ago 2009-12-21 16:16:37
rubidium@openttd.org
(svn r18586) -Fix [FS#3398]: pressing default for the starting year/snow line height edit boxes of the world generation windows didn't work.
1 file changed with 24 insertions and 15 deletions:
0 comments (0 inline, 0 general)
src/genworld_gui.cpp
Show inline comments
 
@@ -732,27 +732,36 @@ struct GenerateLandscapeWindow : public 
 

	
 
	virtual void OnQueryTextFinished(char *str)
 
	{
 
		int32 value;
 
		if (!StrEmpty(str)) {
 
			int32 value = atoi(str);
 

	
 
			value = atoi(str);
 
		} else {
 
			/* An empty string means revert to the default */
 
			switch (this->widget_id) {
 
				case GLAND_START_DATE_TEXT:
 
					this->SetWidgetDirty(GLAND_START_DATE_TEXT);
 
					_settings_newgame.game_creation.starting_year = Clamp(value, MIN_YEAR, MAX_YEAR);
 
					break;
 
				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();
 
			}
 
		}
 

	
 
				case GLAND_SNOW_LEVEL_TEXT:
 
					this->SetWidgetDirty(GLAND_SNOW_LEVEL_TEXT);
 
					_settings_newgame.game_creation.snow_line_height = Clamp(value, MIN_SNOWLINE_HEIGHT, MAX_SNOWLINE_HEIGHT);
 
					break;
 
		switch (this->widget_id) {
 
			case GLAND_START_DATE_TEXT:
 
				this->SetWidgetDirty(GLAND_START_DATE_TEXT);
 
				_settings_newgame.game_creation.starting_year = Clamp(value, MIN_YEAR, MAX_YEAR);
 
				break;
 

	
 
				case GLAND_TOWN_PULLDOWN:
 
					_settings_newgame.game_creation.custom_town_number = Clamp(value, 1, CUSTOM_TOWN_MAX_NUMBER);
 
					break;
 
			}
 
			case GLAND_SNOW_LEVEL_TEXT:
 
				this->SetWidgetDirty(GLAND_SNOW_LEVEL_TEXT);
 
				_settings_newgame.game_creation.snow_line_height = Clamp(value, MIN_SNOWLINE_HEIGHT, MAX_SNOWLINE_HEIGHT);
 
				break;
 

	
 
			this->SetDirty();
 
			case GLAND_TOWN_PULLDOWN:
 
				_settings_newgame.game_creation.custom_town_number = Clamp(value, 1, CUSTOM_TOWN_MAX_NUMBER);
 
				break;
 
		}
 

	
 
		this->SetDirty();
 
	}
 
};
 

	
0 comments (0 inline, 0 general)