From 986224519a27df1aa81445c1507907e11fa09afd Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 8 Feb 2009 17:46:08 +0000 Subject: (svn r15416) -Fix (r15412): revert the removal of the road side drop down box handling. --- src/settings_gui.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/settings_gui.cpp') diff --git a/src/settings_gui.cpp b/src/settings_gui.cpp index 5df74302d..e9d43f1dd 100644 --- a/src/settings_gui.cpp +++ b/src/settings_gui.cpp @@ -266,6 +266,15 @@ struct GameOptionsWindow : Window { MarkWholeScreenDirty(); break; + case GAMEOPT_ROADSIDE_BTN: // Road side + if (this->opt->vehicle.road_side != index) { // only change if setting changed + uint i; + if (GetSettingFromName("vehicle.road_side", &i) == NULL) NOT_REACHED(); + SetSettingValue(i, index); + MarkWholeScreenDirty(); + } + break; + case GAMEOPT_TOWNNAME_BTN: // Town names if (_game_mode == GM_MENU || GetNumTowns() == 0) { this->opt->game_creation.town_name = index; -- cgit v1.2.3-54-g00ecf