1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-22 14:24:33 +01:00

Fix mine train coaster left large helix drawing incorrect sprites

This commit is contained in:
mix
2025-10-04 23:16:02 +01:00
committed by GitHub
parent 92bde38e07
commit 1089b11192
2 changed files with 1 additions and 12 deletions

View File

@@ -1,5 +1,6 @@
0.4.28 (in development)
------------------------------------------------------------------------
- Fix: [#25299] The Mine Train Coaster left large helix draws incorrect sprites at certain angles (original bug).
0.4.27 (2025-10-04)
------------------------------------------------------------------------

View File

@@ -3553,9 +3553,6 @@ static void MineTrainRCTrackLeftHalfBankedHelixUpLarge(
PaintAddImageAsParentRotated(
session, direction, session.TrackColours.WithIndex(20348), { 0, 0, height },
{ { 16, 16, height + 27 }, { 16, 16, 1 } });
PaintAddImageAsParentRotated(
session, direction, session.TrackColours.WithIndex(20178), { 0, 0, height },
{ { 16, 16, height + 27 }, { 16, 16, 1 } });
WoodenASupportsPaintSetup(
session, supportType.wooden, WoodenSupportSubType::corner2, height, session.SupportColours);
break;
@@ -3610,9 +3607,6 @@ static void MineTrainRCTrackLeftHalfBankedHelixUpLarge(
PaintAddImageAsParentRotated(
session, direction, session.TrackColours.WithIndex(20347), { 0, 0, height },
{ { 0, 0, height + 27 }, { 16, 32, 1 } });
PaintAddImageAsParentRotated(
session, direction, session.TrackColours.WithIndex(20177), { 0, 0, height },
{ { 0, 0, height + 27 }, { 16, 32, 1 } });
WoodenASupportsPaintSetup(
session, supportType.wooden, WoodenSupportSubType::corner0, height, session.SupportColours);
break;
@@ -3832,9 +3826,6 @@ static void MineTrainRCTrackLeftHalfBankedHelixUpLarge(
PaintAddImageAsParentRotated(
session, direction, session.TrackColours.WithIndex(20348), { 0, 0, height },
{ { 16, 16, height + 27 }, { 16, 16, 1 } });
PaintAddImageAsParentRotated(
session, direction, session.TrackColours.WithIndex(20178), { 0, 0, height },
{ { 16, 16, height + 27 }, { 16, 16, 1 } });
WoodenASupportsPaintSetup(
session, supportType.wooden, WoodenSupportSubType::corner2, height, session.SupportColours);
break;
@@ -3889,9 +3880,6 @@ static void MineTrainRCTrackLeftHalfBankedHelixUpLarge(
PaintAddImageAsParentRotated(
session, direction, session.TrackColours.WithIndex(20347), { 0, 0, height },
{ { 0, 0, height + 27 }, { 32, 16, 1 } });
PaintAddImageAsParentRotated(
session, direction, session.TrackColours.WithIndex(20177), { 0, 0, height },
{ { 0, 0, height + 27 }, { 32, 16, 1 } });
WoodenASupportsPaintSetup(
session, supportType.wooden, WoodenSupportSubType::corner0, height, session.SupportColours);
break;