From 79ceb2d5cbc94bb52e82775a53b9f8bf15544b4d Mon Sep 17 00:00:00 2001 From: lewyche <101478421+lewyche@users.noreply.github.com> Date: Tue, 30 Jul 2024 16:33:13 -0400 Subject: [PATCH] Fix #22389: Alpine coaster has wrong tunnel entrance type --- distribution/changelog.txt | 1 + src/openrct2/ride/coaster/AlpineCoaster.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/distribution/changelog.txt b/distribution/changelog.txt index eb1c46ba6b..476094a42b 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -29,6 +29,7 @@ - Fix: [#22333] Tile inspector closes other tool windows. - Fix: [#22339] Printing ui.tool.cursor in console crashes the game. - Fix: [#22348] Progress bar screen doesn’t handle window resizing. +- Fix: [#22389] Alpine coaster has wrong tunnel entrance type. 0.4.12 (2024-07-07) ------------------------------------------------------------------------ diff --git a/src/openrct2/ride/coaster/AlpineCoaster.cpp b/src/openrct2/ride/coaster/AlpineCoaster.cpp index 0f7a55725c..2f45120f95 100644 --- a/src/openrct2/ride/coaster/AlpineCoaster.cpp +++ b/src/openrct2/ride/coaster/AlpineCoaster.cpp @@ -361,7 +361,7 @@ namespace OpenRCT2::AlpineRC } else { - PaintUtilPushTunnelRotated(session, direction, height + 8, TunnelType::_14); + PaintUtilPushTunnelRotated(session, direction, height + 8, TunnelType::_12); } PaintUtilSetSegmentSupportHeight( session, PaintUtilRotateSegments(BlockedSegments::kStraightFlat, direction), 0xFFFF, 0);