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
0cd50cae8c
commit
6a317779c8
1
CHANGES
1
CHANGES
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue