diff options
author | bunnei <bunneidev@gmail.com> | 2016-04-02 07:43:35 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2016-04-02 07:43:35 +0200 |
commit | e5e3b97db21fe96852d45da2be0360b078547cd5 (patch) | |
tree | 604e67b9d94fe763bba02679c20d4d039bdf200e /src/common | |
parent | Merge pull request #1390 from purpasmart96/citra_gsp_error_codes (diff) | |
parent | cecd:u: stub GetCecInfoEventHandle, GetChangeStateEventHandle (diff) | |
download | yuzu-e5e3b97db21fe96852d45da2be0360b078547cd5.tar yuzu-e5e3b97db21fe96852d45da2be0360b078547cd5.tar.gz yuzu-e5e3b97db21fe96852d45da2be0360b078547cd5.tar.bz2 yuzu-e5e3b97db21fe96852d45da2be0360b078547cd5.tar.lz yuzu-e5e3b97db21fe96852d45da2be0360b078547cd5.tar.xz yuzu-e5e3b97db21fe96852d45da2be0360b078547cd5.tar.zst yuzu-e5e3b97db21fe96852d45da2be0360b078547cd5.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 4c86151ab..a22b0aeb0 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -46,6 +46,7 @@ namespace Log { SUB(Service, NIM) \ SUB(Service, NWM) \ SUB(Service, CAM) \ + SUB(Service, CECD) \ SUB(Service, CFG) \ SUB(Service, DSP) \ SUB(Service, HID) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index e4c39c308..b1b639f15 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -61,6 +61,7 @@ enum class Class : ClassType { Service_NIM, ///< The NIM (Network interface manager) service Service_NWM, ///< The NWM (Network wlan manager) service Service_CAM, ///< The CAM (Camera) service + Service_CECD, ///< The CECD service Service_CFG, ///< The CFG (Configuration) service Service_DSP, ///< The DSP (DSP control) service Service_HID, ///< The HID (Human interface device) service |