summaryrefslogtreecommitdiffstats
path: root/src/yuzu/configuration/configure_general.cpp
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2023-03-12 03:04:36 +0100
committergerman77 <juangerman-13@hotmail.com>2023-03-12 03:04:36 +0100
commite090a1c6bdcfc7515c66fc49b0028b161dbe80eb (patch)
treef6ded70b81330bb1b11ece568f03fde6bf0e0b8a /src/yuzu/configuration/configure_general.cpp
parentyuzu: Remove console id setting (diff)
downloadyuzu-e090a1c6bdcfc7515c66fc49b0028b161dbe80eb.tar
yuzu-e090a1c6bdcfc7515c66fc49b0028b161dbe80eb.tar.gz
yuzu-e090a1c6bdcfc7515c66fc49b0028b161dbe80eb.tar.bz2
yuzu-e090a1c6bdcfc7515c66fc49b0028b161dbe80eb.tar.lz
yuzu-e090a1c6bdcfc7515c66fc49b0028b161dbe80eb.tar.xz
yuzu-e090a1c6bdcfc7515c66fc49b0028b161dbe80eb.tar.zst
yuzu-e090a1c6bdcfc7515c66fc49b0028b161dbe80eb.zip
Diffstat (limited to 'src/yuzu/configuration/configure_general.cpp')
-rw-r--r--src/yuzu/configuration/configure_general.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/yuzu/configuration/configure_general.cpp b/src/yuzu/configuration/configure_general.cpp
index 7ade01ba6..207bcdc4d 100644
--- a/src/yuzu/configuration/configure_general.cpp
+++ b/src/yuzu/configuration/configure_general.cpp
@@ -42,7 +42,6 @@ void ConfigureGeneral::SetConfiguration() {
ui->toggle_check_exit->setChecked(UISettings::values.confirm_before_closing.GetValue());
ui->toggle_user_on_boot->setChecked(UISettings::values.select_user_on_boot.GetValue());
ui->toggle_background_pause->setChecked(UISettings::values.pause_when_in_background.GetValue());
- ui->toggle_background_mute->setChecked(UISettings::values.mute_when_in_background.GetValue());
ui->toggle_hide_mouse->setChecked(UISettings::values.hide_mouse.GetValue());
ui->toggle_speed_limit->setChecked(Settings::values.use_speed_limit.GetValue());
@@ -88,7 +87,6 @@ void ConfigureGeneral::ApplyConfiguration() {
UISettings::values.confirm_before_closing = ui->toggle_check_exit->isChecked();
UISettings::values.select_user_on_boot = ui->toggle_user_on_boot->isChecked();
UISettings::values.pause_when_in_background = ui->toggle_background_pause->isChecked();
- UISettings::values.mute_when_in_background = ui->toggle_background_mute->isChecked();
UISettings::values.hide_mouse = ui->toggle_hide_mouse->isChecked();
// Guard if during game and set to game-specific value