From 5781f8e8100d96fb96198f4c90bdeb881a2b7297 Mon Sep 17 00:00:00 2001 From: Matt Date: Mon, 8 Mar 2021 15:20:20 +0200 Subject: [PATCH] Refactor uses of PaintAddImageAsParent in FlyingSaucers.cpp --- src/openrct2/ride/gentle/FlyingSaucers.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/ride/gentle/FlyingSaucers.cpp b/src/openrct2/ride/gentle/FlyingSaucers.cpp index e47ecb9c84..44aaa9b951 100644 --- a/src/openrct2/ride/gentle/FlyingSaucers.cpp +++ b/src/openrct2/ride/gentle/FlyingSaucers.cpp @@ -43,7 +43,7 @@ static void paint_flying_saucers( wooden_a_supports_paint_setup(session, direction & 1, 0, height, session->TrackColours[SCHEME_MISC], nullptr); uint32_t imageId = SPR_FLYING_SAUCERS_FLOOR | session->TrackColours[SCHEME_TRACK]; - PaintAddImageAsParent(session, imageId, 0, 0, 30, 30, 1, height, 1, 1, height); + PaintAddImageAsParent(session, imageId, { 0, 0, height }, { 30, 30, 1 }, { 1, 1, height }); auto ride = get_ride(rideIndex); if (ride != nullptr)