diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2024-01-01 15:02:06 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-01 15:02:06 -0500 |
commit | c3c676b7d69c35c37462fb0edd04d714e9a1f4e3 (patch) | |
tree | 4301881852e57113f602f01f166462cbda25f262 /src/common | |
parent | aa9ff2ffc2d9c3c1b7d6f4f6a7170acda7e17e9c (diff) | |
parent | aa4d15594f7bfd1c1aeb5d9ba40a59ff689e25e7 (diff) |
Merge pull request #12518 from t895/theme-settings
android: Migrate remaining settings to ini
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/settings.cpp | 2 | ||||
-rw-r--r-- | src/common/settings_common.h | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index ea52bbfa6..07709d4e5 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -199,6 +199,8 @@ const char* TranslateCategory(Category category) { case Category::CpuDebug: case Category::CpuUnsafe: return "Cpu"; + case Category::Overlay: + return "Overlay"; case Category::Renderer: case Category::RendererAdvanced: case Category::RendererDebug: diff --git a/src/common/settings_common.h b/src/common/settings_common.h index c82e17495..1a290ad77 100644 --- a/src/common/settings_common.h +++ b/src/common/settings_common.h @@ -18,6 +18,7 @@ enum class Category : u32 { Cpu, CpuDebug, CpuUnsafe, + Overlay, Renderer, RendererAdvanced, RendererDebug, |