summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authort895 <clombardo169@gmail.com>2023-12-11 02:45:02 +0100
committert895 <clombardo169@gmail.com>2023-12-12 23:25:37 +0100
commitf2eb3c579f2de15410681014b47779d44d77fd48 (patch)
treeda874862efd26f0ebfdc84e7ea9b56d295032dde /src/common
parentandroid: Add per-game settings (diff)
downloadyuzu-f2eb3c579f2de15410681014b47779d44d77fd48.tar
yuzu-f2eb3c579f2de15410681014b47779d44d77fd48.tar.gz
yuzu-f2eb3c579f2de15410681014b47779d44d77fd48.tar.bz2
yuzu-f2eb3c579f2de15410681014b47779d44d77fd48.tar.lz
yuzu-f2eb3c579f2de15410681014b47779d44d77fd48.tar.xz
yuzu-f2eb3c579f2de15410681014b47779d44d77fd48.tar.zst
yuzu-f2eb3c579f2de15410681014b47779d44d77fd48.zip
Diffstat (limited to '')
-rw-r--r--src/common/settings.cpp2
-rw-r--r--src/common/settings_common.h1
2 files changed, 3 insertions, 0 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp
index 88f509ba7..ea52bbfa6 100644
--- a/src/common/settings.cpp
+++ b/src/common/settings.cpp
@@ -211,6 +211,8 @@ const char* TranslateCategory(Category category) {
case Category::Debugging:
case Category::DebuggingGraphics:
return "Debugging";
+ case Category::GpuDriver:
+ return "GpuDriver";
case Category::Miscellaneous:
return "Miscellaneous";
case Category::Network:
diff --git a/src/common/settings_common.h b/src/common/settings_common.h
index 344c04439..c82e17495 100644
--- a/src/common/settings_common.h
+++ b/src/common/settings_common.h
@@ -26,6 +26,7 @@ enum class Category : u32 {
DataStorage,
Debugging,
DebuggingGraphics,
+ GpuDriver,
Miscellaneous,
Network,
WebService,