1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-25 07:44:38 +01:00

Fix #22038: Upward helix button missing

This commit is contained in:
spacek531
2024-05-16 03:53:55 -07:00
committed by GitHub
parent 288575c4ff
commit 6ba33b735a

View File

@@ -1698,7 +1698,7 @@ static Widget _rideConstructionWidgets[] = {
{
// Enable helix
widgets[WIDX_SLOPE_DOWN_STEEP].type = WindowWidgetType::FlatBtn;
if (IsTrackEnabled(TRACK_SLOPE_STEEP_UP))
if (IsTrackEnabled(TRACK_HELIX_UP_BANKED_HALF))
widgets[WIDX_SLOPE_UP_STEEP].type = WindowWidgetType::FlatBtn;
}
}