From 21001954674b2e4a8b4973f44c5b51905aa9302d Mon Sep 17 00:00:00 2001 From: mix <167040362+mixiate@users.noreply.github.com> Date: Fri, 4 Apr 2025 08:04:46 +0100 Subject: [PATCH] Fix #24143: Mine Train Coaster track isn't shown in station --- src/openrct2/paint/track/coaster/MineTrainCoaster.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/openrct2/paint/track/coaster/MineTrainCoaster.cpp b/src/openrct2/paint/track/coaster/MineTrainCoaster.cpp index 197fc25654..4819b64593 100644 --- a/src/openrct2/paint/track/coaster/MineTrainCoaster.cpp +++ b/src/openrct2/paint/track/coaster/MineTrainCoaster.cpp @@ -143,13 +143,13 @@ static void MineTrainRCTrackStation( bool isClosed = trackElement.IsBrakeClosed(); PaintAddImageAsParentRotated( session, direction, session.TrackColours.WithIndex(kMineTrainBlockBrakeImages[direction][isClosed]), - { 0, 0, height }, { { 0, 6, height }, { 32, 20, 1 } }); + { 0, 0, height }, { { 0, 6, height + 1 }, { 32, 20, 1 } }); } else { PaintAddImageAsParentRotated( session, direction, session.TrackColours.WithIndex(imageIds[direction]), { 0, 0, height }, - { { 0, 6, height }, { 32, 20, 1 } }); + { { 0, 6, height + 1 }, { 32, 20, 1 } }); } if (TrackPaintUtilDrawStation(session, ride, direction, height, trackElement, StationBaseType::b, -2)) {