diff options
author | bunnei <bunneidev@gmail.com> | 2018-07-30 19:06:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-30 19:06:52 +0200 |
commit | c5fa3560a63e82babea22b148128f1e70fd54d06 (patch) | |
tree | bd86c30123f70ffe6d8fef6df3e8d166a585f33f /src/common | |
parent | Merge pull request #856 from lioncash/btm (diff) | |
parent | service: Add wlan services (diff) | |
download | yuzu-c5fa3560a63e82babea22b148128f1e70fd54d06.tar yuzu-c5fa3560a63e82babea22b148128f1e70fd54d06.tar.gz yuzu-c5fa3560a63e82babea22b148128f1e70fd54d06.tar.bz2 yuzu-c5fa3560a63e82babea22b148128f1e70fd54d06.tar.lz yuzu-c5fa3560a63e82babea22b148128f1e70fd54d06.tar.xz yuzu-c5fa3560a63e82babea22b148128f1e70fd54d06.tar.zst yuzu-c5fa3560a63e82babea22b148128f1e70fd54d06.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 c663b6358..55de535c0 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -193,6 +193,7 @@ void FileBackend::Write(const Entry& entry) { SUB(Service, SSL) \ SUB(Service, Time) \ SUB(Service, VI) \ + SUB(Service, WLAN) \ CLS(HW) \ SUB(HW, Memory) \ SUB(HW, LCD) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index e7fd986d5..e8d98de99 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -80,6 +80,7 @@ enum class Class : ClassType { Service_SSL, ///< The SSL service Service_Time, ///< The time service Service_VI, ///< The VI (Video interface) service + Service_WLAN, ///< The WLAN (Wireless local area network) service HW, ///< Low-level hardware emulation HW_Memory, ///< Memory-map and address translation HW_LCD, ///< LCD register emulation |