From 5adbea9ac829b76507543e4c09b2000138ffbbcf Mon Sep 17 00:00:00 2001 From: Karst Date: Thu, 30 Mar 2023 19:41:42 +0200 Subject: [PATCH] Select OpenMusic by default when opening a new scenario --- distribution/changelog.txt | 1 + src/openrct2/rct12/RCT12.cpp | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/distribution/changelog.txt b/distribution/changelog.txt index db197c1611..85cbf27f65 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -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 a new scenario. - 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. diff --git a/src/openrct2/rct12/RCT12.cpp b/src/openrct2/rct12/RCT12.cpp index 54b9fee1d7..3a0b69d6b0 100644 --- a/src/openrct2/rct12/RCT12.cpp +++ b/src/openrct2/rct12/RCT12.cpp @@ -750,6 +750,11 @@ 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", }; std::string_view GetStationIdentifierFromStyle(uint8_t style)