diff options
| author | 2023-11-09 20:30:00 -0600 | |
|---|---|---|
| committer | 2023-11-10 10:22:04 -0600 | |
| commit | 9e331f9957bbc7aec82cd8f96c67373e115bcd68 (patch) | |
| tree | e649eab7f50bd41958c1694a6b090a74e9b445e3 /src/common | |
| parent | yuzu: Save mute when in background setting (diff) | |
| download | yuzu-9e331f9957bbc7aec82cd8f96c67373e115bcd68.tar.gz yuzu-9e331f9957bbc7aec82cd8f96c67373e115bcd68.tar.xz yuzu-9e331f9957bbc7aec82cd8f96c67373e115bcd68.zip | |
yuzu: Make mute audio persistent
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/settings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index 9317075f7..e899f1ae6 100644 --- a/src/common/settings.h +++ b/src/common/settings.h | |||
| @@ -153,7 +153,7 @@ struct Values { | |||
| 153 | true, | 153 | true, |
| 154 | true}; | 154 | true}; |
| 155 | Setting<bool, false> audio_muted{ | 155 | Setting<bool, false> audio_muted{ |
| 156 | linkage, false, "audio_muted", Category::Audio, Specialization::Default, false, true}; | 156 | linkage, false, "audio_muted", Category::Audio, Specialization::Default, true, true}; |
| 157 | Setting<bool, false> dump_audio_commands{ | 157 | Setting<bool, false> dump_audio_commands{ |
| 158 | linkage, false, "dump_audio_commands", Category::Audio, Specialization::Default, false}; | 158 | linkage, false, "dump_audio_commands", Category::Audio, Specialization::Default, false}; |
| 159 | 159 | ||