diff options
author | Narr the Reg <[email protected]> | 2023-10-03 20:06:21 -0600 |
---|---|---|
committer | Narr the Reg <[email protected]> | 2023-10-03 20:12:06 -0600 |
commit | c84c35ac743c6303fcc1bb96b17ae530a39bd49e (patch) | |
tree | 5129b0f512c91177ce754756b08d68d1ea4c3a6c /src/yuzu/configuration/shared_translation.cpp | |
parent | ff57c667734706be0769f7c2a11a27dd93677771 (diff) | |
download | yuzu-android-c84c35ac743c6303fcc1bb96b17ae530a39bd49e.tar.gz yuzu-android-c84c35ac743c6303fcc1bb96b17ae530a39bd49e.zip |
yuzu: Fix mute when in background setting
Diffstat (limited to 'src/yuzu/configuration/shared_translation.cpp')
-rw-r--r-- | src/yuzu/configuration/shared_translation.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu/configuration/shared_translation.cpp b/src/yuzu/configuration/shared_translation.cpp index 276bdbaba..a4e8af1b4 100644 --- a/src/yuzu/configuration/shared_translation.cpp +++ b/src/yuzu/configuration/shared_translation.cpp @@ -29,9 +29,10 @@ std::unique_ptr<TranslationMap> InitializeTranslations(QWidget* parent) { INSERT(Settings, sink_id, "Output Engine:", ""); INSERT(Settings, audio_output_device_id, "Output Device:", ""); INSERT(Settings, audio_input_device_id, "Input Device:", ""); - INSERT(Settings, audio_muted, "Mute audio when in background", ""); + INSERT(Settings, audio_muted, "Mute audio", ""); INSERT(Settings, volume, "Volume:", ""); INSERT(Settings, dump_audio_commands, "", ""); + INSERT(UISettings, mute_when_in_background, "Mute audio when in background", ""); // Core INSERT(Settings, use_multi_core, "Multicore CPU Emulation", ""); |