diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-02 15:59:08 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-02 16:09:45 +0200 |
commit | 7469e26e5e1a224aaeee4eccc86079c82f9c326d (patch) | |
tree | 55b3441d54a431fcb454a12ec17173ba882918ba /src/common | |
parent | Merge pull request #896 from lioncash/audio-out (diff) | |
download | yuzu-7469e26e5e1a224aaeee4eccc86079c82f9c326d.tar yuzu-7469e26e5e1a224aaeee4eccc86079c82f9c326d.tar.gz yuzu-7469e26e5e1a224aaeee4eccc86079c82f9c326d.tar.bz2 yuzu-7469e26e5e1a224aaeee4eccc86079c82f9c326d.tar.lz yuzu-7469e26e5e1a224aaeee4eccc86079c82f9c326d.tar.xz yuzu-7469e26e5e1a224aaeee4eccc86079c82f9c326d.tar.zst yuzu-7469e26e5e1a224aaeee4eccc86079c82f9c326d.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 d6714587c..ecb265a47 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -180,6 +180,7 @@ void FileBackend::Write(const Entry& entry) { SUB(Service, LBL) \ SUB(Service, LDN) \ SUB(Service, LM) \ + SUB(Service, Migration) \ SUB(Service, Mii) \ SUB(Service, MM) \ SUB(Service, NCM) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index e96d817f4..ef0b8bf0d 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -67,6 +67,7 @@ enum class Class : ClassType { Service_LBL, ///< The LBL (LCD backlight) service Service_LDN, ///< The LDN (Local domain network) service Service_LM, ///< The LM (Logger) service + Service_Migration, ///< The migration service Service_Mii, ///< The Mii service Service_MM, ///< The MM (Multimedia) service Service_NCM, ///< The NCM service |