diff options
author | Liam <byteslice@airmail.cc> | 2024-02-25 04:30:49 +0100 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2024-02-25 04:56:08 +0100 |
commit | dc50b95a47a9450d784b59a6023d4c2d39011349 (patch) | |
tree | 1d0d65771de6c49f07c3b847468958cc39d043f3 /src | |
parent | ldn: return no connection from GetStateForMonitor (diff) | |
download | yuzu-dc50b95a47a9450d784b59a6023d4c2d39011349.tar yuzu-dc50b95a47a9450d784b59a6023d4c2d39011349.tar.gz yuzu-dc50b95a47a9450d784b59a6023d4c2d39011349.tar.bz2 yuzu-dc50b95a47a9450d784b59a6023d4c2d39011349.tar.lz yuzu-dc50b95a47a9450d784b59a6023d4c2d39011349.tar.xz yuzu-dc50b95a47a9450d784b59a6023d4c2d39011349.tar.zst yuzu-dc50b95a47a9450d784b59a6023d4c2d39011349.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/common/settings.h | 2 | ||||
-rw-r--r-- | src/yuzu/configuration/configure_applets.cpp | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index b2b071e7e..1dbdcd8a6 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -140,7 +140,7 @@ struct Values { Category::LibraryApplet}; Setting<AppletMode> data_erase_applet_mode{linkage, AppletMode::HLE, "data_erase_applet_mode", Category::LibraryApplet}; - Setting<AppletMode> error_applet_mode{linkage, AppletMode::HLE, "error_applet_mode", + Setting<AppletMode> error_applet_mode{linkage, AppletMode::LLE, "error_applet_mode", Category::LibraryApplet}; Setting<AppletMode> net_connect_applet_mode{linkage, AppletMode::HLE, "net_connect_applet_mode", Category::LibraryApplet}; diff --git a/src/yuzu/configuration/configure_applets.cpp b/src/yuzu/configuration/configure_applets.cpp index 513ecb548..139bfa9da 100644 --- a/src/yuzu/configuration/configure_applets.cpp +++ b/src/yuzu/configuration/configure_applets.cpp @@ -59,9 +59,7 @@ void ConfigureApplets::Setup(const ConfigurationShared::Builder& builder) { // Untested applets if (setting->Id() == Settings::values.data_erase_applet_mode.Id() || - setting->Id() == Settings::values.error_applet_mode.Id() || setting->Id() == Settings::values.net_connect_applet_mode.Id() || - setting->Id() == Settings::values.web_applet_mode.Id() || setting->Id() == Settings::values.shop_applet_mode.Id() || setting->Id() == Settings::values.login_share_applet_mode.Id() || setting->Id() == Settings::values.wifi_web_auth_applet_mode.Id() || |