summaryrefslogtreecommitdiffstats
path: root/src/frontend_common/config.h
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.h
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.h')
-rw-r--r--src/frontend_common/config.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/frontend_common/config.h b/src/frontend_common/config.h
index 4798d6432..4ecb97044 100644
--- a/src/frontend_common/config.h
+++ b/src/frontend_common/config.h
@@ -76,6 +76,9 @@ protected:
void ReadCoreValues();
void ReadDataStorageValues();
void ReadDebuggingValues();
+#ifdef __unix__
+ void ReadLinuxValues();
+#endif
void ReadServiceValues();
void ReadDisabledAddOnValues();
void ReadMiscellaneousValues();
@@ -107,6 +110,9 @@ protected:
void SaveCoreValues();
void SaveDataStorageValues();
void SaveDebuggingValues();
+#ifdef __unix__
+ void SaveLinuxValues();
+#endif
void SaveNetworkValues();
void SaveDisabledAddOnValues();
void SaveMiscellaneousValues();