Skip to content

Commit

Permalink
Merge pull request #19785 from karst/openmusic-default
Browse files Browse the repository at this point in the history
Select OpenMusic by default when opening a new scenario
  • Loading branch information
ZehMatt committed Aug 28, 2023
2 parents b75275d + dca49cc commit b56d8a5
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 1 deletion.
1 change: 1 addition & 0 deletions distribution/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- Feature: [OpenMusic#41] Official Title Theme by Allister Brimble.
- Improved: [#20119, #20243] Add new colour presets to several roller coasters (using the new colours).
- Improved: [#20393, #20410] Add Cyrillic characters 覑覒, 袇褧, 袆褦, 袉褨, 袊褩, and 袌褬 to the sprite font.
- Change: [#19785] OpenMusic is now selected by default when opening SC4/SC6 - or creating new - scenarios.
- Change: [#20110] Fix a few RCT1 build height parity discrepancies.
- Change: [#20550] Change SEK conversion rate from 1 GBP to 0.1 GBP.
- Fix: [#6152] Camera and UI are no longer locked at 40 Hz, providing a smoother experience.
Expand Down
8 changes: 8 additions & 0 deletions src/openrct2/object/DefaultObjects.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,14 @@ const std::string_view DefaultSelectedObjects[] = {
"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",

// Footpath surfaces
"rct2.footpath_surface.tarmac",
Expand Down
2 changes: 1 addition & 1 deletion src/openrct2/object/DefaultObjects.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
#include "Object.h"

extern const std::string_view MinimumRequiredObjects[2];
extern const std::string_view DefaultSelectedObjects[103];
extern const std::string_view DefaultSelectedObjects[111];
extern const std::string_view DesignerSelectedObjects[39];
8 changes: 8 additions & 0 deletions src/openrct2/rct12/RCT12.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -750,6 +750,14 @@ 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",
};

std::string_view GetStationIdentifierFromStyle(uint8_t style)
Expand Down

0 comments on commit b56d8a5

Please sign in to comment.