diff --git a/distribution/changelog.txt b/distribution/changelog.txt index f7cd4c99cf..d0c18b7646 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -25,6 +25,7 @@ - Fix: [#14682] Crash when painting Swinging Ships with invalid subtype. - Fix: [#14707] Crash when window is closed during text input. - Fix: [#14710] Ride/Track Design preview does not show if it costs more money than available. +- Improved: [#14511] “Unlock operating limits” cheat now also unlocks all music. - Improved: [#14712, #14716]: Improve startup times. 0.3.3 (2021-03-13) diff --git a/src/openrct2-ui/windows/Ride.cpp b/src/openrct2-ui/windows/Ride.cpp index 4d6d9dc1c3..570a782d2a 100644 --- a/src/openrct2-ui/windows/Ride.cpp +++ b/src/openrct2-ui/windows/Ride.cpp @@ -5031,7 +5031,7 @@ static void window_ride_music_mousedown(rct_window* w, rct_widgetindex widgetInd } } - if (musicObj->SupportsRideType(ride->type)) + if (gCheatsFastLiftHill || musicObj->SupportsRideType(ride->type)) { musicOrder.push_back(i); }