From ab1708a97020188a32e770bb7992b502edac50b7 Mon Sep 17 00:00:00 2001 From: Hielke Morsink Date: Tue, 1 Nov 2016 10:46:30 +0100 Subject: [PATCH] Fix quarter-scenery cluster selection --- src/windows/top_toolbar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/windows/top_toolbar.c b/src/windows/top_toolbar.c index 979622b8be..7b8b122cb0 100644 --- a/src/windows/top_toolbar.c +++ b/src/windows/top_toolbar.c @@ -2310,7 +2310,7 @@ static void top_toolbar_tool_update_scenery(sint16 x, sint16 y){ scenery = get_small_scenery_entry(selected_scenery); gMapSelectType = MAP_SELECT_TYPE_FULL; - if (!(scenery->small_scenery.flags & SMALL_SCENERY_FLAG_FULL_TILE)){ + if (!(scenery->small_scenery.flags & SMALL_SCENERY_FLAG_FULL_TILE) && !gWindowSceneryClusterEnabled){ gMapSelectType = MAP_SELECT_TYPE_QUARTER_0 + ((parameter2 & 0xFF) ^ 2); }