diff options
| author | 2018-02-20 10:45:50 -0500 | |
|---|---|---|
| committer | 2018-02-20 10:45:50 -0500 | |
| commit | 6a2197806ef8ca045f43f340255b8e8195efe4e4 (patch) | |
| tree | 4a94d252127f784e19466f070c96e402ea0d135c /src/common | |
| parent | Merge pull request #205 from bunnei/more-puyo-stubs (diff) | |
| parent | Service/AOC: stub ListAddOnContent function (diff) | |
| download | yuzu-6a2197806ef8ca045f43f340255b8e8195efe4e4.tar.gz yuzu-6a2197806ef8ca045f43f340255b8e8195efe4e4.tar.xz yuzu-6a2197806ef8ca045f43f340255b8e8195efe4e4.zip | |
Merge pull request #206 from mailwl/aoc-listaddoncontent
Service/AOC: stub ListAddOnContent function
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 dc989cd73..7f3ae1a4e 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp | |||
| @@ -35,6 +35,7 @@ namespace Log { | |||
| 35 | SUB(Service, ACC) \ | 35 | SUB(Service, ACC) \ |
| 36 | SUB(Service, Audio) \ | 36 | SUB(Service, Audio) \ |
| 37 | SUB(Service, AM) \ | 37 | SUB(Service, AM) \ |
| 38 | SUB(Service, AOC) \ | ||
| 38 | SUB(Service, APM) \ | 39 | SUB(Service, APM) \ |
| 39 | SUB(Service, Friend) \ | 40 | SUB(Service, Friend) \ |
| 40 | SUB(Service, FS) \ | 41 | SUB(Service, FS) \ |
diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 18a87f1c7..3cf13fcb0 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h | |||
| @@ -51,6 +51,7 @@ enum class Class : ClassType { | |||
| 51 | /// should have its own subclass. | 51 | /// should have its own subclass. |
| 52 | Service_ACC, ///< The ACC (Accounts) service | 52 | Service_ACC, ///< The ACC (Accounts) service |
| 53 | Service_AM, ///< The AM (Applet manager) service | 53 | Service_AM, ///< The AM (Applet manager) service |
| 54 | Service_AOC, ///< The AOC (AddOn Content) service | ||
| 54 | Service_APM, ///< The APM (Performance) service | 55 | Service_APM, ///< The APM (Performance) service |
| 55 | Service_Audio, ///< The Audio (Audio control) service | 56 | Service_Audio, ///< The Audio (Audio control) service |
| 56 | Service_Friend, ///< The friend service | 57 | Service_Friend, ///< The friend service |