From dfa58470cfc2b28d003d3f60c775935f9929cc31 Mon Sep 17 00:00:00 2001 From: Gymnasiast Date: Fri, 11 Mar 2022 21:02:38 +0100 Subject: [PATCH] Apply simplification --- src/openrct2/entity/Fountain.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/openrct2/entity/Fountain.cpp b/src/openrct2/entity/Fountain.cpp index d7b9d42d00..ec3756b93f 100644 --- a/src/openrct2/entity/Fountain.cpp +++ b/src/openrct2/entity/Fountain.cpp @@ -439,6 +439,5 @@ void JumpingFountain::Paint(paint_session& session, int32_t imageDirection) cons auto bb = isAntiClockwise ? antiClockWiseBoundingBoxes : clockWiseBoundingBoxes; PaintAddImageAsParentRotated( - session, imageDirection, imageId, { 0, 0, height }, { 32, 1, 3 }, - { bb[imageDirection & 1].x, bb[imageDirection & 1].y, height }); + session, imageDirection, imageId, { 0, 0, height }, { 32, 1, 3 }, { bb[imageDirection & 1], height }); }