Merge pull request #11990 from german77/audio
yuzu: Save mute when in background setting
This commit is contained in:
commit
247d66a680
7 changed files with 26 additions and 13 deletions
|
@ -203,6 +203,8 @@ const char* TranslateCategory(Category category) {
|
|||
case Category::Ui:
|
||||
case Category::UiGeneral:
|
||||
return "UI";
|
||||
case Category::UiAudio:
|
||||
return "UiAudio";
|
||||
case Category::UiLayout:
|
||||
return "UiLayout";
|
||||
case Category::UiGameList:
|
||||
|
|
|
@ -153,7 +153,7 @@ struct Values {
|
|||
true,
|
||||
true};
|
||||
Setting<bool, false> audio_muted{
|
||||
linkage, false, "audio_muted", Category::Audio, Specialization::Default, false, true};
|
||||
linkage, false, "audio_muted", Category::Audio, Specialization::Default, true, true};
|
||||
Setting<bool, false> dump_audio_commands{
|
||||
linkage, false, "dump_audio_commands", Category::Audio, Specialization::Default, false};
|
||||
|
||||
|
|
|
@ -32,6 +32,7 @@ enum class Category : u32 {
|
|||
AddOns,
|
||||
Controls,
|
||||
Ui,
|
||||
UiAudio,
|
||||
UiGeneral,
|
||||
UiLayout,
|
||||
UiGameList,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue