1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-10 09:32:29 +01:00

Fix train glitching on Bobsleigh Coaster small helixes (#23809)

This commit is contained in:
mix
2025-02-14 16:51:20 +00:00
committed by GitHub
parent bb94ee8bc0
commit 503d55d051
2 changed files with 3 additions and 2 deletions

View File

@@ -5,6 +5,7 @@
- Fix: [#22617] Sloped Wooden and Side-Friction supports draw out of order when built directly above diagonal track pieces.
- Fix: [#23522] Diagonal sloped Steeplechase supports have glitched sprites at the base.
- Fix: [#23795] Looping Roller Coaster vertical loop supports are drawn incorrectly.
- Fix: [#23809] Trains glitch on Bobsleigh Coaster small helixes.
0.4.19.1 (2025-02-03)
------------------------------------------------------------------------

View File

@@ -2314,7 +2314,7 @@ static void BobsleighRCTrackLeftHalfBankedHelixUpSmall(
case 3:
PaintAddImageAsParentRotated(
session, direction, session.TrackColours.WithIndex(14884), { 0, 0, height },
{ { 0, 6, height + 8 }, { 32, 20, 2 } });
{ { 0, 6, height }, { 32, 20, 2 } });
PaintAddImageAsParentRotated(
session, direction, session.TrackColours.WithIndex(14896), { 0, 0, height },
{ { 0, 6, height + 27 }, { 32, 20, 0 } });
@@ -2551,7 +2551,7 @@ static void BobsleighRCTrackLeftHalfBankedHelixUpSmall(
case 0:
PaintAddImageAsParentRotated(
session, direction, session.TrackColours.WithIndex(14882), { 0, 0, height },
{ { 0, 6, height + 8 }, { 32, 20, 2 } });
{ { 0, 6, height }, { 32, 20, 2 } });
PaintAddImageAsParentRotated(
session, direction, session.TrackColours.WithIndex(14894), { 0, 0, height },
{ { 0, 6, height + 27 }, { 32, 20, 0 } });