aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/yuzu/uisettings.h
diff options
context:
space:
mode:
authorlat9nq <[email protected]>2022-03-17 19:20:15 -0400
committerlat9nq <[email protected]>2022-03-17 19:20:15 -0400
commitdb637b5a4c02772eb827ed01a6ecb430e4b65daa (patch)
treeaa8e65a9abe1e6dca038c5f2b1734df85b5f5058 /src/yuzu/uisettings.h
parent7760777c06ba227eba2f985765e07d8f4829a8c6 (diff)
downloadyuzu-android-db637b5a4c02772eb827ed01a6ecb430e4b65daa.tar.gz
yuzu-android-db637b5a4c02772eb827ed01a6ecb430e4b65daa.zip
yuzu qt: Save disable_web_applet setting
The web applet causes multiple issues with the rest of the application. Disable it by default and add a debug option to re-enable it until a proper solution can be found.
Diffstat (limited to 'src/yuzu/uisettings.h')
-rw-r--r--src/yuzu/uisettings.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu/uisettings.h b/src/yuzu/uisettings.h
index c952843fe..cc5aee382 100644
--- a/src/yuzu/uisettings.h
+++ b/src/yuzu/uisettings.h
@@ -114,7 +114,7 @@ struct Values {
bool configuration_applied;
bool reset_to_defaults;
- bool disable_web_applet{};
+ Settings::BasicSetting<bool> disable_web_applet{true, "disable_web_applet"};
};
extern Values values;