diff --git a/contributors.md b/contributors.md index d3c2a9abff..6540ce149b 100644 --- a/contributors.md +++ b/contributors.md @@ -163,6 +163,7 @@ The following people are not part of the development team, but have been contrib * Ben Johnston (gsckoco) * (evilclownattack) * Adam Bloom (adam-bloom) +* Geoff B. (geoff-B) ## Toolchain * (Balletie) - macOS diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 84b7d50370..c3da1a0dde 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -47,6 +47,7 @@ - Fix: [#13937] Pathfinding gets confused when two entrances/exits from the same ride are on top of each other. - Fix: [#13961] Animation for Guests sliding down Spiral Slide is missing on close zoom levels. - Fix: [#14012] 'Finish 5 roller coasters' goal is listed incorrectly in scenario selector. +- Fix: [#14095] Holding down [-][+] buttons does not decrease/increase number of circuits. - Improved: [#6022] Allow up to 128 ride objects to be selected in track designer. - Improved: [#12917] Changed peep movement so that they stay more spread out over the full width of single tile paths. - Improved: [#13386] A GUI error message is now displayed if the language files are missing. diff --git a/src/openrct2-ui/windows/Ride.cpp b/src/openrct2-ui/windows/Ride.cpp index 8a56cd16ed..93deff0b2f 100644 --- a/src/openrct2-ui/windows/Ride.cpp +++ b/src/openrct2-ui/windows/Ride.cpp @@ -503,7 +503,9 @@ static constexpr const uint64_t window_ride_page_hold_down_widgets[] = { (1ULL << WIDX_MINIMUM_LENGTH_INCREASE) | (1ULL << WIDX_MINIMUM_LENGTH_DECREASE) | (1ULL << WIDX_MAXIMUM_LENGTH_INCREASE) | - (1ULL << WIDX_MAXIMUM_LENGTH_DECREASE), + (1ULL << WIDX_MAXIMUM_LENGTH_DECREASE) | + (1ULL << WIDX_OPERATE_NUMBER_OF_CIRCUITS_INCREASE) | + (1ULL << WIDX_OPERATE_NUMBER_OF_CIRCUITS_DECREASE), 0, 0, 0,