Skip to content
Snippets Groups Projects
Commit f7a9d425 authored by bunnei's avatar bunnei
Browse files

logging: Add WebService as a log cateogry.

parent 0f1ae781
No related branches found
No related tags found
No related merge requests found
...@@ -73,7 +73,8 @@ namespace Log { ...@@ -73,7 +73,8 @@ namespace Log {
SUB(Audio, Sink) \ SUB(Audio, Sink) \
CLS(Input) \ CLS(Input) \
CLS(Network) \ CLS(Network) \
CLS(Loader) CLS(Loader) \
CLS(WebService)
// GetClassName is a macro defined by Windows.h, grrr... // GetClassName is a macro defined by Windows.h, grrr...
const char* GetLogClassName(Class log_class) { const char* GetLogClassName(Class log_class) {
......
...@@ -91,6 +91,7 @@ enum class Class : ClassType { ...@@ -91,6 +91,7 @@ enum class Class : ClassType {
Loader, ///< ROM loader Loader, ///< ROM loader
Input, ///< Input emulation Input, ///< Input emulation
Network, ///< Network emulation Network, ///< Network emulation
WebService, ///< Interface to Citra Web Services
Count ///< Total number of logging classes Count ///< Total number of logging classes
}; };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment