From 29506a3748c5391c87080f53d0c77efd250fd9c3 Mon Sep 17 00:00:00 2001 From: Michael Steenbeek Date: Sat, 12 Feb 2022 12:26:39 +0100 Subject: [PATCH] =?UTF-8?q?Fix=20#16623:=20Large=20Scenery=20supports=20do?= =?UTF-8?q?n=E2=80=99t=20render=20correctly?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/openrct2/paint/tile_element/Paint.LargeScenery.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/openrct2/paint/tile_element/Paint.LargeScenery.cpp b/src/openrct2/paint/tile_element/Paint.LargeScenery.cpp index 10f7414d9b..1825263e6b 100644 --- a/src/openrct2/paint/tile_element/Paint.LargeScenery.cpp +++ b/src/openrct2/paint/tile_element/Paint.LargeScenery.cpp @@ -407,5 +407,6 @@ void PaintLargeScenery(paint_session& session, uint8_t direction, uint16_t heigh } } } - PaintLargeScenerySupports(session, direction, height, tileElement, isGhost ? imageTemplate : ImageId(), *tile); + PaintLargeScenerySupports( + session, direction, height, tileElement, isGhost ? imageTemplate : ImageId(0, COLOUR_BLACK), *tile); }