summaryrefslogtreecommitdiff
path: root/src/settings_gui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/settings_gui.cpp')
-rw-r--r--src/settings_gui.cpp9
1 files changed, 9 insertions, 0 deletions
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;