diff options
Diffstat (limited to 'src/genworld_gui.cpp')
-rw-r--r-- | src/genworld_gui.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/genworld_gui.cpp b/src/genworld_gui.cpp index e4014529c..7296346df 100644 --- a/src/genworld_gui.cpp +++ b/src/genworld_gui.cpp @@ -205,7 +205,7 @@ void StartGeneratingLandscape(glwp_modes mode) DeleteAllNonVitalWindows(); /* Copy all XXX_newgame to XXX when coming from outside the editor */ - _settings = _settings_newgame; + _settings_game = _settings_newgame; ResetGRFConfig(true); SndPlayFx(SND_15_BEEP); @@ -377,9 +377,9 @@ struct GenerateLandscapeWindow : public QueryStringBaseWindow { break; case GLAND_GENERATE_BUTTON: // Generate - _settings = _settings_newgame; + _settings_game = _settings_newgame; - if (_settings.economy.town_layout == TL_NO_ROADS) { + if (_settings_game.economy.town_layout == TL_NO_ROADS) { ShowQuery( STR_TOWN_LAYOUT_WARNING_CAPTION, STR_TOWN_LAYOUT_WARNING_MESSAGE, |