1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-28 01:04:50 +01:00

Fix error with MagicCarpet BoundBox conversion

This commit is contained in:
iikorni
2021-12-09 22:48:11 -06:00
committed by Gymnasiast
parent 388387c809
commit d70bca7980

View File

@@ -203,7 +203,7 @@ static void PaintMagicCarpetStructure(
bbOffset.y = bb.offset.y;
bbOffset.z = height + 7;
bbSize.x = bb.length.x;
bbSize.y = bb.offset.y;
bbSize.y = bb.length.y;
bbSize.z = 127;
PaintMagicCarpetFrame(session, Plane::Back, direction, offset, bbOffset, bbSize);