summaryrefslogtreecommitdiff
path: root/src/common/settings.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/settings.cpp')
-rw-r--r--src/common/settings.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp
index 59934803e..38a82f6f7 100644
--- a/src/common/settings.cpp
+++ b/src/common/settings.cpp
@@ -151,14 +151,19 @@ const char* TranslateCategory(Category category) {
151 case Category::Core: 151 case Category::Core:
152 return "Core"; 152 return "Core";
153 case Category::Cpu: 153 case Category::Cpu:
154 case Category::CpuDebug:
155 case Category::CpuUnsafe:
154 return "Cpu"; 156 return "Cpu";
155 case Category::Renderer: 157 case Category::Renderer:
158 case Category::RendererAdvanced:
159 case Category::RendererDebug:
156 return "Renderer"; 160 return "Renderer";
157 case Category::System: 161 case Category::System:
158 return "System"; 162 return "System";
159 case Category::DataStorage: 163 case Category::DataStorage:
160 return "Data Storage"; 164 return "Data Storage";
161 case Category::Debugging: 165 case Category::Debugging:
166 case Category::DebuggingGraphics:
162 return "Debugging"; 167 return "Debugging";
163 case Category::Miscellaneous: 168 case Category::Miscellaneous:
164 return "Miscellaneous"; 169 return "Miscellaneous";
@@ -188,8 +193,6 @@ const char* TranslateCategory(Category category) {
188 return "Paths"; 193 return "Paths";
189 case Category::MaxEnum: 194 case Category::MaxEnum:
190 break; 195 break;
191 case Category::AdvancedGraphics:
192 return "Renderer";
193 } 196 }
194 return "Miscellaneous"; 197 return "Miscellaneous";
195} 198}