mirror of https://github.com/mgba-emu/mgba.git
Qt: Fix mute settings not being loaded on setting screen (fixes #2990)
This commit is contained in:
parent
e86e9d0c76
commit
d6291bcc05
1
CHANGES
1
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
|
||||
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue