diff options
| author | Narr the Reg <juangerman-13@hotmail.com> | 2023-11-09 20:11:13 -0600 |
|---|---|---|
| committer | Narr the Reg <juangerman-13@hotmail.com> | 2023-11-10 10:22:02 -0600 |
| commit | 9169cbf72835bf12434c9f9f1fea11f03d40437f (patch) | |
| tree | b6e604690fbefecaf73b229213ceaa1c74fb9994 /src/yuzu/uisettings.h | |
| parent | 940618a64dc048790291e240dca6a085a4f1c27c (diff) | |
yuzu: Save mute when in background setting
Diffstat (limited to 'src/yuzu/uisettings.h')
| -rw-r--r-- | src/yuzu/uisettings.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/yuzu/uisettings.h b/src/yuzu/uisettings.h index 77d992c54..3485a6347 100644 --- a/src/yuzu/uisettings.h +++ b/src/yuzu/uisettings.h @@ -109,9 +109,13 @@ struct Values { Settings::Specialization::Default, true, true}; - Setting<bool> mute_when_in_background{ - linkage, false, "muteWhenInBackground", Category::Audio, Settings::Specialization::Default, - true, true}; + Setting<bool> mute_when_in_background{linkage, + false, + "muteWhenInBackground", + Category::UiAudio, + Settings::Specialization::Default, + true, + true}; Setting<bool> hide_mouse{ linkage, true, "hideInactiveMouse", Category::UiGeneral, Settings::Specialization::Default, true, true}; |
