summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorGravatar bunnei2017-10-14 22:18:42 -0400
committerGravatar bunnei2017-10-14 22:18:42 -0400
commit960a1416de3780e91855d9389c4534acf8c061df (patch)
tree6b373fed639eb39098ba33e6247893919005a2c8 /src/common
parentnso: Add a log for loading submodules. (diff)
downloadyuzu-960a1416de3780e91855d9389c4534acf8c061df.tar.gz
yuzu-960a1416de3780e91855d9389c4534acf8c061df.tar.xz
yuzu-960a1416de3780e91855d9389c4534acf8c061df.zip
hle: Initial implementation of NX service framework and IPC.
Diffstat (limited to 'src/common')
-rw-r--r--src/common/logging/backend.cpp2
-rw-r--r--src/common/logging/log.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp
index 1361ccfba..dc10a7bc6 100644
--- a/src/common/logging/backend.cpp
+++ b/src/common/logging/backend.cpp
@@ -32,7 +32,7 @@ namespace Log {
32 CLS(Kernel) \ 32 CLS(Kernel) \
33 SUB(Kernel, SVC) \ 33 SUB(Kernel, SVC) \
34 CLS(Service) \ 34 CLS(Service) \
35 SUB(Service, SRV) \ 35 SUB(Service, SM) \
36 SUB(Service, FS) \ 36 SUB(Service, FS) \
37 SUB(Service, GSP) \ 37 SUB(Service, GSP) \
38 SUB(Service, CFG) \ 38 SUB(Service, CFG) \
diff --git a/src/common/logging/log.h b/src/common/logging/log.h
index 2ebd8911c..8e4601d6c 100644
--- a/src/common/logging/log.h
+++ b/src/common/logging/log.h
@@ -49,7 +49,7 @@ enum class Class : ClassType {
49 Kernel_SVC, ///< Kernel system calls 49 Kernel_SVC, ///< Kernel system calls
50 Service, ///< HLE implementation of system services. Each major service 50 Service, ///< HLE implementation of system services. Each major service
51 /// should have its own subclass. 51 /// should have its own subclass.
52 Service_SRV, ///< The SRV (Service Directory) implementation 52 Service_SM, ///< The SRV (Service Directory) implementation
53 Service_FS, ///< The FS (Filesystem) service implementation 53 Service_FS, ///< The FS (Filesystem) service implementation
54 Service_GSP, ///< The GSP (GPU control) service 54 Service_GSP, ///< The GSP (GPU control) service
55 Service_CFG, ///< The CFG (Configuration) service 55 Service_CFG, ///< The CFG (Configuration) service