summaryrefslogtreecommitdiffstats
path: root/src/frontend_common/config.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2024-01-28 21:02:34 +0100
committerGitHub <noreply@github.com>2024-01-28 21:02:34 +0100
commit6a2532fe17769e78d619435ce276008c61345671 (patch)
treedc3f6955769d5233396a4ef8e9c1114bc0aad422 /src/frontend_common/config.cpp
parentMerge pull request #12821 from merryhime/atomic_ops (diff)
parentyuzu: Add per-game linux gamemode configuration (diff)
downloadyuzu-6a2532fe17769e78d619435ce276008c61345671.tar
yuzu-6a2532fe17769e78d619435ce276008c61345671.tar.gz
yuzu-6a2532fe17769e78d619435ce276008c61345671.tar.bz2
yuzu-6a2532fe17769e78d619435ce276008c61345671.tar.lz
yuzu-6a2532fe17769e78d619435ce276008c61345671.tar.xz
yuzu-6a2532fe17769e78d619435ce276008c61345671.tar.zst
yuzu-6a2532fe17769e78d619435ce276008c61345671.zip
Diffstat (limited to 'src/frontend_common/config.cpp')
-rw-r--r--src/frontend_common/config.cpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/frontend_common/config.cpp b/src/frontend_common/config.cpp
index 46277e288..905f35118 100644
--- a/src/frontend_common/config.cpp
+++ b/src/frontend_common/config.cpp
@@ -298,6 +298,16 @@ void Config::ReadDebuggingValues() {
EndGroup();
}
+#ifdef __unix__
+void Config::ReadLinuxValues() {
+ BeginGroup(Settings::TranslateCategory(Settings::Category::Linux));
+
+ ReadCategory(Settings::Category::Linux);
+
+ EndGroup();
+}
+#endif
+
void Config::ReadServiceValues() {
BeginGroup(Settings::TranslateCategory(Settings::Category::Services));
@@ -404,6 +414,9 @@ void Config::ReadValues() {
ReadControlValues();
ReadCoreValues();
ReadCpuValues();
+#ifdef __unix__
+ ReadLinuxValues();
+#endif
ReadRendererValues();
ReadAudioValues();
ReadSystemValues();
@@ -504,6 +517,9 @@ void Config::SaveValues() {
SaveControlValues();
SaveCoreValues();
SaveCpuValues();
+#ifdef __unix__
+ SaveLinuxValues();
+#endif
SaveRendererValues();
SaveAudioValues();
SaveSystemValues();
@@ -578,6 +594,16 @@ void Config::SaveDebuggingValues() {
EndGroup();
}
+#ifdef __unix__
+void Config::SaveLinuxValues() {
+ BeginGroup(Settings::TranslateCategory(Settings::Category::Linux));
+
+ WriteCategory(Settings::Category::Linux);
+
+ EndGroup();
+}
+#endif
+
void Config::SaveNetworkValues() {
BeginGroup(Settings::TranslateCategory(Settings::Category::Services));