diff --git a/distribution/changelog.txt b/distribution/changelog.txt index b508821a65..9858448fe3 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -5,6 +5,7 @@ - Fix: [#16357] Chairlift station covers draw incorrectly. - Fix: [#21768] Dirty blocks debug overlay is rendered incorrectly on high DPI screens. - Fix: [#22617] Sloped Wooden and Side-Friction supports draw out of order when built directly above diagonal track pieces. +- Fix: [#22620] RCT1 Mine Train Coaster trains glitch on large banked turns. - 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. diff --git a/src/openrct2/paint/track/coaster/MineTrainCoaster.cpp b/src/openrct2/paint/track/coaster/MineTrainCoaster.cpp index 5aefe90203..4ec1c2e3f6 100644 --- a/src/openrct2/paint/track/coaster/MineTrainCoaster.cpp +++ b/src/openrct2/paint/track/coaster/MineTrainCoaster.cpp @@ -5024,7 +5024,7 @@ static void MineTrainRCTrackLeftEighthBankToDiag( case 3: PaintAddImageAsParentRotated( session, direction, session.TrackColours.WithIndex(20496), { 0, 0, height }, - { { 0, 27, height }, { 32, 32, 1 } }); + { { 0, 0, height }, { 32, 32, 1 } }); WoodenASupportsPaintSetup( session, supportType.wooden, WoodenSupportSubType::NwSe, height, session.SupportColours); break;