diff options
author | stormcone <48624099+stormcone@users.noreply.github.com> | 2019-07-12 21:43:58 +0200 |
---|---|---|
committer | Charles Pigott <charlespigott@googlemail.com> | 2019-10-08 00:21:18 +0100 |
commit | 1e5029563cb68e53e41299a5d92e317566d7ba66 (patch) | |
tree | f30d17669b144252d98a734f20d357e765e7a026 /src | |
parent | 48fd7b279222c1288004bf1bf8466d1084fbbf4b (diff) | |
download | openttd-1e5029563cb68e53e41299a5d92e317566d7ba66.tar.xz |
Fix #7635: Game crash on exit scenario editor.
Diffstat (limited to 'src')
-rw-r--r-- | src/dock_gui.cpp | 2 | ||||
-rw-r--r-- | src/road_gui.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/dock_gui.cpp b/src/dock_gui.cpp index 785bbc5fb..7fdaa1d8f 100644 --- a/src/dock_gui.cpp +++ b/src/dock_gui.cpp @@ -105,7 +105,7 @@ struct BuildDocksToolbarWindow : Window { ~BuildDocksToolbarWindow() { - if (_game_mode != GM_EDITOR && this->IsWidgetLowered(WID_DT_STATION)) SetViewportCatchmentStation(nullptr, true); + if (_game_mode == GM_NORMAL && this->IsWidgetLowered(WID_DT_STATION)) SetViewportCatchmentStation(nullptr, true); if (_settings_client.gui.link_terraform_toolbar) DeleteWindowById(WC_SCEN_LAND_GEN, 0, false); } diff --git a/src/road_gui.cpp b/src/road_gui.cpp index 9a35147e5..5301b6a2e 100644 --- a/src/road_gui.cpp +++ b/src/road_gui.cpp @@ -293,7 +293,7 @@ struct BuildRoadToolbarWindow : Window { ~BuildRoadToolbarWindow() { - if (_game_mode != GM_EDITOR && (this->IsWidgetLowered(WID_ROT_BUS_STATION) || this->IsWidgetLowered(WID_ROT_TRUCK_STATION))) SetViewportCatchmentStation(nullptr, true); + if (_game_mode == GM_NORMAL && (this->IsWidgetLowered(WID_ROT_BUS_STATION) || this->IsWidgetLowered(WID_ROT_TRUCK_STATION))) SetViewportCatchmentStation(nullptr, true); if (_settings_client.gui.link_terraform_toolbar) DeleteWindowById(WC_SCEN_LAND_GEN, 0, false); } |