From ea1f17ab836a6088dd0eaecb829c3eb39242d7d4 Mon Sep 17 00:00:00 2001 From: Llewelyn Gareth Griffiths Date: Mon, 14 Jul 2025 17:16:26 +0200 Subject: [PATCH] reliability progress bar no longer has min value of 10 --- src/openrct2-ui/windows/Ride.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2-ui/windows/Ride.cpp b/src/openrct2-ui/windows/Ride.cpp index 0c06b42b37..a4f1dd89e0 100644 --- a/src/openrct2-ui/windows/Ride.cpp +++ b/src/openrct2-ui/windows/Ride.cpp @@ -4032,7 +4032,7 @@ namespace OpenRCT2::Ui::Windows return; uint16_t reliability = ride->reliabilityPercentage; - widgetProgressBarSetNewPercentage(widgets[WIDX_RELIABILITY_BAR], std::max(10, reliability)); + widgetProgressBarSetNewPercentage(widgets[WIDX_RELIABILITY_BAR], reliability); uint16_t downTime = ride->downtime; widgetProgressBarSetNewPercentage(widgets[WIDX_DOWN_TIME_BAR], downTime);