From 9d8d4552cdcbb56f67a05664eabfc60ffa43e453 Mon Sep 17 00:00:00 2001 From: Michael Steenbeek <1478678+Gymnasiast@users.noreply.github.com> Date: Sat, 6 Jul 2024 18:59:15 +0200 Subject: [PATCH] Do not add new music styles to old park automatically --- distribution/changelog.txt | 1 + src/openrct2/rct12/RCT12.cpp | 10 ---------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 06e8c3156d..70453e11d4 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -30,6 +30,7 @@ - Improved: [objects#329] Add RCT1AA lay-down coaster trains (for import only). - Change: [#7248] Small mini-maps are now centred in the map window. - Change: [#20240] Heavy snow and blizzards now make guests buy and use umbrellas. +- Change: [#21043] The new music styles are no longer added to old parks automatically. - Change: [#21214] Wacky Worlds and Time Twister’s scenario names now match their park names. - Change: [#21991] UI themes JSON now use colour names and a translucency bool, instead of a number (old themes still work). - Change: [#22057] Reorder Time Twister’s scenarios and adjust their difficulty classification. diff --git a/src/openrct2/rct12/RCT12.cpp b/src/openrct2/rct12/RCT12.cpp index 9ad80cad38..3af6d4b165 100644 --- a/src/openrct2/rct12/RCT12.cpp +++ b/src/openrct2/rct12/RCT12.cpp @@ -760,16 +760,6 @@ static constexpr std::string_view _musicStyles[] = { "rct2.music.pirate", "rct2.music.rock3", "rct2.music.candy", - "openrct2.music.galaxy", - "openrct2.music.acid", - "openrct2.music.dodgems", - "openrct2.music.blizzard", - "openrct2.music.extraterrestrial", - "openrct2.music.fairground2", - "openrct2.music.ragtime2", - "openrct2.music.prehistoric", - "openrct2.music.mystic", - "openrct2.music.rock4", }; std::string_view GetStationIdentifierFromStyle(uint8_t style)