(svn r15416) -Fix (r15412): revert the removal of the road side drop down box handling.

This commit is contained in:
rubidium 2009-02-08 17:46:08 +00:00
parent faeb00008a
commit 986224519a
1 changed files with 9 additions and 0 deletions

View File

@ -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;