1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-04 13:42:55 +01:00

Apply simplification

This commit is contained in:
Gymnasiast
2022-03-11 21:02:38 +01:00
parent b7aa5ebd2e
commit dfa58470cf

View File

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