diff --git a/CHANGES b/CHANGES index a8bf8e989..7cb0dd6cb 100644 --- a/CHANGES +++ b/CHANGES @@ -14,6 +14,7 @@ Emulation fixes: Other fixes: - mGUI: Fix cases where an older save state screenshot would be shown (fixes mgba.io/i/2183) - Qt: Re-enable sync for multiplayer windows that aren't connected (fixes mgba.io/i/2974) + - Qt: Fix mute settings not being loaded on setting screen (fixes mgba.io/i/2990) Misc: - Qt: Add exporting of SAV + RTC saves from Save Converter to strip RTC data diff --git a/src/platform/qt/SettingsView.cpp b/src/platform/qt/SettingsView.cpp index cba481dc8..b73792afe 100644 --- a/src/platform/qt/SettingsView.cpp +++ b/src/platform/qt/SettingsView.cpp @@ -699,6 +699,8 @@ void SettingsView::reloadConfig() { loadSetting("suspendScreensaver", m_ui.suspendScreensaver); loadSetting("pauseOnFocusLost", m_ui.pauseOnFocusLost); loadSetting("pauseOnMinimize", m_ui.pauseOnMinimize); + loadSetting("muteOnFocusLost", m_ui.muteOnFocusLost); + loadSetting("muteOnMinimize", m_ui.muteOnMinimize); loadSetting("savegamePath", m_ui.savegamePath); loadSetting("savestatePath", m_ui.savestatePath); loadSetting("screenshotPath", m_ui.screenshotPath);