Apply simplification

This commit is contained in:
Gymnasiast 2022-03-11 21:02:38 +01:00
parent b7aa5ebd2e
commit dfa58470cf
No known key found for this signature in database
GPG Key ID: DBFFF47AB2CA3EDD
1 changed files with 1 additions and 2 deletions

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