Changeset - r16333:45ebc13232d3
[Not reviewed]
master
0 1 0
yexo - 14 years ago 2010-10-28 18:15:42
yexo@openttd.org
(svn r21054) -Fix [FS#4188] (r19397): scenario starting year was not set correctly when changed by clicking on the date panel and entering a new value
1 file changed with 2 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/toolbar_gui.cpp
Show inline comments
 
@@ -811,7 +811,7 @@ static void ToolbarSwitchClick(Window *w
 
 */
 
static void ToolbarScenDatePanel(Window *w)
 
{
 
	SetDParam(0, _settings_newgame.game_creation.starting_year);
 
	SetDParam(0, _settings_game.game_creation.starting_year);
 
	ShowQueryString(STR_JUST_INT, STR_MAPGEN_START_DATE_QUERY_CAPT, 8, 100, w, CS_NUMERAL, QSF_ENABLE_DEFAULT);
 
	_left_button_clicked = false;
 
}
 
@@ -1694,6 +1694,7 @@ public:
 
			value = DEF_START_YEAR;
 
		}
 
		_settings_game.game_creation.starting_year = Clamp(value, MIN_YEAR, MAX_YEAR);
 
		SetDate(ConvertYMDToDate(_settings_game.game_creation.starting_year, 0, 1), 0);
 

	
 
		this->SetDirty();
 
	}
0 comments (0 inline, 0 general)