diff options
author | Subv <subv2112@gmail.com> | 2014-12-09 05:52:27 +0100 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2014-12-31 16:51:44 +0100 |
commit | 97a7381d29b69dbe760598e70669c16573304ad4 (patch) | |
tree | f4e336af1e5cf5d72c2665470a96a9db73711ae7 /src/common | |
parent | Merge pull request #375 from lioncash/uops (diff) | |
download | yuzu-97a7381d29b69dbe760598e70669c16573304ad4.tar yuzu-97a7381d29b69dbe760598e70669c16573304ad4.tar.gz yuzu-97a7381d29b69dbe760598e70669c16573304ad4.tar.bz2 yuzu-97a7381d29b69dbe760598e70669c16573304ad4.tar.lz yuzu-97a7381d29b69dbe760598e70669c16573304ad4.tar.xz yuzu-97a7381d29b69dbe760598e70669c16573304ad4.tar.zst yuzu-97a7381d29b69dbe760598e70669c16573304ad4.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/logging/backend.cpp | 1 | ||||
-rw-r--r-- | src/common/logging/log.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index 816d1bb55..7ac30ad50 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -39,6 +39,7 @@ static std::shared_ptr<Logger> global_logger; SUB(Service, CFG) \ SUB(Service, DSP) \ SUB(Service, HID) \ + SUB(Service, SOC) \ CLS(HW) \ SUB(HW, Memory) \ SUB(HW, GPU) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index d1c391862..06b99b07a 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -59,6 +59,7 @@ enum class Class : ClassType { Service_CFG, ///< The CFG (Configuration) service Service_DSP, ///< The DSP (DSP control) service Service_HID, ///< The HID (User input) service + Service_SOC, ///< The SOC (Socket) service HW, ///< Low-level hardware emulation HW_Memory, ///< Memory-map and address translation HW_GPU, ///< GPU control emulation |