diff options
author | Subv <subv2112@gmail.com> | 2015-11-23 23:17:28 +0100 |
---|---|---|
committer | Subv <subv2112@gmail.com> | 2015-11-23 23:17:28 +0100 |
commit | 434ae89a6a9d6c5ea2d2ba4a5dfb39457e15cb5e (patch) | |
tree | c3ee81c50fddd9290d044bce322d2b3d8fd39287 /src/common | |
parent | Merge pull request #1246 from polaris-/patch-1 (diff) | |
download | yuzu-434ae89a6a9d6c5ea2d2ba4a5dfb39457e15cb5e.tar yuzu-434ae89a6a9d6c5ea2d2ba4a5dfb39457e15cb5e.tar.gz yuzu-434ae89a6a9d6c5ea2d2ba4a5dfb39457e15cb5e.tar.bz2 yuzu-434ae89a6a9d6c5ea2d2ba4a5dfb39457e15cb5e.tar.lz yuzu-434ae89a6a9d6c5ea2d2ba4a5dfb39457e15cb5e.tar.xz yuzu-434ae89a6a9d6c5ea2d2ba4a5dfb39457e15cb5e.tar.zst yuzu-434ae89a6a9d6c5ea2d2ba4a5dfb39457e15cb5e.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 21a9ae8d0..d186ba8f8 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -44,6 +44,7 @@ namespace Log { SUB(Service, LDR) \ SUB(Service, NIM) \ SUB(Service, NWM) \ + SUB(Service, CAM) \ SUB(Service, CFG) \ SUB(Service, DSP) \ SUB(Service, HID) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 43f0c59e4..2d9323a7b 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -59,6 +59,7 @@ enum class Class : ClassType { Service_LDR, ///< The LDR (3ds dll loader) service Service_NIM, ///< The NIM (Network interface manager) service Service_NWM, ///< The NWM (Network wlan manager) service + Service_CAM, ///< The CAM (Camera) service Service_CFG, ///< The CFG (Configuration) service Service_DSP, ///< The DSP (DSP control) service Service_HID, ///< The HID (Human interface device) service |