From 4c2a0f279b62d374a6aa57fd4fa344d035db0996 Mon Sep 17 00:00:00 2001 From: Michael Steenbeek Date: Sat, 22 Feb 2020 19:20:14 +0100 Subject: [PATCH] Fix #10752: Mute button state not correctly set at startup (#10816) --- distribution/changelog.txt | 1 + src/openrct2/Context.cpp | 1 + 2 files changed, 2 insertions(+) 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);