From ea1f17ab836a6088dd0eaecb829c3eb39242d7d4 Mon Sep 17 00:00:00 2001 From: Llewelyn Gareth Griffiths Date: Mon, 14 Jul 2025 17:16:26 +0200 Subject: [PATCH 1/3] 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); From fd6707e9fb255f23c9a6be211706197fefff3d87 Mon Sep 17 00:00:00 2001 From: Llewelyn Gareth Griffiths Date: Sun, 20 Jul 2025 16:54:51 +0200 Subject: [PATCH 2/3] updating change log to add fix --- distribution/changelog.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 4b3f544237..ce9911e7e9 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -3,6 +3,7 @@ - Feature: [#24468] [Plugin] Add awards to plugin API. - Feature: [#24702] [Plugin] Add bindings for missing cheats (forcedParkRating, ignoreRidePrice, makeAllDestructible). - Fix: [#24598] Cannot load .park files that use official legacy footpaths by accident. +- Fix: [#24761] Reliability bar in the ride inspector now acts consistently with the Down-Time bar, it no longer has a minimum value of 10. 0.4.24 (2025-07-05) ------------------------------------------------------------------------ From 0c8ea41c6d328bd66541ca2fbc1cf80760e2d72f Mon Sep 17 00:00:00 2001 From: Aaron van Geffen Date: Thu, 24 Jul 2025 12:35:27 +0200 Subject: [PATCH 3/3] Update distribution/changelog.txt --- distribution/changelog.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 91455b5ee0..6b02ddcf8c 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -5,7 +5,7 @@ - Change: [#24730] Security guards now only walk slowly in crowded areas. - Fix: [#24598] Cannot load .park files that use official legacy footpaths by accident. - Fix: [#24711] The map smoothing function only partially works for custom height map image files. -- Fix: [#24761] Reliability bar in the ride inspector now acts consistently with the Down-Time bar, it no longer has a minimum value of 10. +- Fix: [#24761] The reliability bar in the ride window visually does not go below 10%. - Fix: [#24773] The new ride window debug authors does not show the correct authors for non legacy ride objects. - Fix: [#24775] The scenery and new ride windows do not filter by file name or identifier correctly for non legacy objects.