diff options
author | mailwl <mailwl@gmail.com> | 2018-03-23 07:32:50 +0100 |
---|---|---|
committer | mailwl <mailwl@gmail.com> | 2018-03-23 07:32:50 +0100 |
commit | 9ee33350de652ce586a5ff6a2135ebbaeaa45c7c (patch) | |
tree | 427b6ccda520885426556db019254e12a8352fd7 /src/common | |
parent | Merge pull request #264 from valentinvanelslande/cmd-dynarmic (diff) | |
download | yuzu-9ee33350de652ce586a5ff6a2135ebbaeaa45c7c.tar yuzu-9ee33350de652ce586a5ff6a2135ebbaeaa45c7c.tar.gz yuzu-9ee33350de652ce586a5ff6a2135ebbaeaa45c7c.tar.bz2 yuzu-9ee33350de652ce586a5ff6a2135ebbaeaa45c7c.tar.lz yuzu-9ee33350de652ce586a5ff6a2135ebbaeaa45c7c.tar.xz yuzu-9ee33350de652ce586a5ff6a2135ebbaeaa45c7c.tar.zst yuzu-9ee33350de652ce586a5ff6a2135ebbaeaa45c7c.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 8d5225f62..9bfac5e7f 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -49,6 +49,7 @@ namespace Log { SUB(Service, SET) \ SUB(Service, SM) \ SUB(Service, SPL) \ + SUB(Service, SSL) \ SUB(Service, Time) \ SUB(Service, VI) \ CLS(HW) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 6298a4906..d8dbab939 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -66,6 +66,7 @@ enum class Class : ClassType { Service_SET, ///< The SET (Settings) service Service_SM, ///< The SM (Service manager) service Service_SPL, ///< The SPL service + Service_SSL, ///< The SSL service Service_Time, ///< The time service Service_VI, ///< The VI (Video interface) service HW, ///< Low-level hardware emulation |