diff options
author | mailwl <mailwl@gmail.com> | 2018-02-20 08:27:32 +0100 |
---|---|---|
committer | mailwl <mailwl@gmail.com> | 2018-02-20 08:30:12 +0100 |
commit | 46931a95660e73acf971a26bb7f341af6e40d4c8 (patch) | |
tree | f1bed354e38edb1732f321ad471d7fe80a2cbefa /src/common | |
parent | Merge pull request #202 from bunnei/scheduler-cleanup (diff) | |
download | yuzu-46931a95660e73acf971a26bb7f341af6e40d4c8.tar yuzu-46931a95660e73acf971a26bb7f341af6e40d4c8.tar.gz yuzu-46931a95660e73acf971a26bb7f341af6e40d4c8.tar.bz2 yuzu-46931a95660e73acf971a26bb7f341af6e40d4c8.tar.lz yuzu-46931a95660e73acf971a26bb7f341af6e40d4c8.tar.xz yuzu-46931a95660e73acf971a26bb7f341af6e40d4c8.tar.zst yuzu-46931a95660e73acf971a26bb7f341af6e40d4c8.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..3a9a15a36 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -35,6 +35,7 @@ namespace Log { SUB(Service, ACC) \ SUB(Service, Audio) \ SUB(Service, AM) \ + SUB(Service, AOC) \ SUB(Service, APM) \ SUB(Service, FS) \ SUB(Service, HID) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 69472ef1a..498569c5c 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -51,6 +51,7 @@ enum class Class : ClassType { /// should have its own subclass. Service_ACC, ///< The ACC (Accounts) service Service_AM, ///< The AM (Applet manager) service + Service_AOC, ///< The AOC (AddOn Content) service Service_APM, ///< The APM (Performance) service Service_Audio, ///< The Audio (Audio control) service Service_FS, ///< The FS (Filesystem) service |