diff --git a/distribution/changelog.txt b/distribution/changelog.txt index 7ac608f3c2..177923a266 100644 --- a/distribution/changelog.txt +++ b/distribution/changelog.txt @@ -27,6 +27,7 @@ - Fix: [#10694] The lift hill speed of the flying roller coaster cannot be changed (original bug). - Fix: [#10705] Apply multithreaded rendering to all viewports. - Fix: [#10739] Mountain tool overlay for even-numbered selections. +- Fix: [#10752] Mute button state not correctly set at startup. - Removed: [#6898] LOADMM and LOADRCT1 title sequence commands (use LOADSC instead). 0.2.4 (2019-10-28) diff --git a/src/openrct2/Context.cpp b/src/openrct2/Context.cpp index 72de7259f7..453c93ddb2 100644 --- a/src/openrct2/Context.cpp +++ b/src/openrct2/Context.cpp @@ -414,6 +414,7 @@ namespace OpenRCT2 audio_init(); audio_populate_devices(); audio_init_ride_sounds_and_info(); + gGameSoundsOff = !gConfigSound.master_sound_enabled; } network_set_env(_env);