diff options
author | bunnei <bunneidev@gmail.com> | 2018-02-20 16:44:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-20 16:44:55 +0100 |
commit | 587f22b610115d18f1631bcd502d268b6ac5b021 (patch) | |
tree | 742a7dce5c5ad73d64653ebd964d2056d651ef6c /src/common | |
parent | Merge pull request #202 from bunnei/scheduler-cleanup (diff) | |
parent | acc_u0: Stub ListOpenUsers service function. (diff) | |
download | yuzu-587f22b610115d18f1631bcd502d268b6ac5b021.tar yuzu-587f22b610115d18f1631bcd502d268b6ac5b021.tar.gz yuzu-587f22b610115d18f1631bcd502d268b6ac5b021.tar.bz2 yuzu-587f22b610115d18f1631bcd502d268b6ac5b021.tar.lz yuzu-587f22b610115d18f1631bcd502d268b6ac5b021.tar.xz yuzu-587f22b610115d18f1631bcd502d268b6ac5b021.tar.zst yuzu-587f22b610115d18f1631bcd502d268b6ac5b021.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 8274b2388..dc989cd73 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -36,6 +36,7 @@ namespace Log { SUB(Service, Audio) \ SUB(Service, AM) \ SUB(Service, APM) \ + SUB(Service, Friend) \ SUB(Service, FS) \ SUB(Service, HID) \ SUB(Service, LM) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 69472ef1a..18a87f1c7 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -53,6 +53,7 @@ enum class Class : ClassType { Service_AM, ///< The AM (Applet manager) service Service_APM, ///< The APM (Performance) service Service_Audio, ///< The Audio (Audio control) service + Service_Friend, ///< The friend service Service_FS, ///< The FS (Filesystem) service Service_HID, ///< The HID (Human interface device) service Service_LM, ///< The LM (Logger) service |