1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-24 07:14:31 +01:00

Fix quarter-scenery cluster selection

This commit is contained in:
Hielke Morsink
2016-11-01 10:46:30 +01:00
committed by Ted John
parent 9540e804b3
commit ab1708a970

View File

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