diff options
author | Charles Lombardo <clombardo169@gmail.com> | 2023-08-29 22:20:59 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-29 22:20:59 -0400 |
commit | 44bce118534980a1da12ace2502408cf3d8641e2 (patch) | |
tree | 006675bed0e4a67709abba293ad5142609a41395 /src/common/settings.cpp | |
parent | 2f03fac9a055e21fce1ce23d6123499b20879daf (diff) | |
parent | 4701eea6462dc0ed688815a8446c5122de2eeb22 (diff) |
Merge pull request #11380 from t895/settings-integration
android: Settings rework
Diffstat (limited to 'src/common/settings.cpp')
-rw-r--r-- | src/common/settings.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 524056841..4ecaf550b 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -159,6 +159,8 @@ float Volume() { const char* TranslateCategory(Category category) { switch (category) { + case Category::Android: + return "Android"; case Category::Audio: return "Audio"; case Category::Core: |