Qt: Fix mute settings not being loaded on setting screen (fixes #2990)

This commit is contained in:
Vicki Pfau 2023-08-08 19:34:10 -07:00
parent 0cd50cae8c
commit 6a317779c8
2 changed files with 3 additions and 0 deletions

View File

@ -27,6 +27,7 @@ Other fixes:
- mGUI: Fix cases where an older save state screenshot would be shown. (fixes mgba.io/i/2183)
- Qt: Fix savestate preview sizes with different scales (fixes mgba.io/i/2560)
- 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:
- Core: Handle relative paths for saves, screenshots, etc consistently (fixes mgba.io/i/2826)
- GB: Prevent incompatible BIOSes from being used on differing models

View File

@ -715,6 +715,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);