1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 21:43:06 +01:00

Fix go karts steep to flat general support heights

This commit is contained in:
mix
2025-09-12 19:42:03 +01:00
committed by GitHub
parent 0c2a52dd36
commit ea66706fbb
2 changed files with 2 additions and 1 deletions

View File

@@ -1895,7 +1895,7 @@ static void TrackUp60ToFlatLongBase(
PaintUtilPushTunnelRotated(session, direction, height + 8, kTunnelGroup, TunnelSubType::Flat);
}
PaintUtilSetSegmentSupportHeight(session, kSegmentsAll, 0xFFFF, 0);
static constexpr std::array generalSupportHeights = { 80, 64, 48, 48 };
static constexpr std::array generalSupportHeights = { 80, 80, 56, 40 };
PaintUtilSetGeneralSupportHeight(session, height + generalSupportHeights[trackSequence]);
}