diff options
author | bunnei <bunneidev@gmail.com> | 2016-10-08 05:02:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-08 05:02:39 +0200 |
commit | cc7f1155a890e049299911aa54ec82804a2e5347 (patch) | |
tree | f232a1db9dcc8c3484bd7a39fd62ab22ac0cd568 /src/common | |
parent | Merge pull request #2082 from yuriks/shader-interp-crash (diff) | |
parent | Update the stub code of BOSS (diff) | |
download | yuzu-cc7f1155a890e049299911aa54ec82804a2e5347.tar yuzu-cc7f1155a890e049299911aa54ec82804a2e5347.tar.gz yuzu-cc7f1155a890e049299911aa54ec82804a2e5347.tar.bz2 yuzu-cc7f1155a890e049299911aa54ec82804a2e5347.tar.lz yuzu-cc7f1155a890e049299911aa54ec82804a2e5347.tar.xz yuzu-cc7f1155a890e049299911aa54ec82804a2e5347.tar.zst yuzu-cc7f1155a890e049299911aa54ec82804a2e5347.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 9a13a9e90..88209081d 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -37,6 +37,7 @@ namespace Log { SUB(Service, FS) \ SUB(Service, ERR) \ SUB(Service, APT) \ + SUB(Service, BOSS) \ SUB(Service, GSP) \ SUB(Service, AC) \ SUB(Service, AM) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index a4b4750de..8d3a2d03e 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -54,6 +54,7 @@ enum class Class : ClassType { Service_FS, ///< The FS (Filesystem) service implementation Service_ERR, ///< The ERR (Error) port implementation Service_APT, ///< The APT (Applets) service + Service_BOSS, ///< The BOSS (SpotPass) service Service_GSP, ///< The GSP (GPU control) service Service_AC, ///< The AC (WiFi status) service Service_AM, ///< The AM (Application manager) service |