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