diff options
author | bunnei <bunneidev@gmail.com> | 2016-04-06 05:04:35 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2016-04-06 05:04:35 +0200 |
commit | dccadce0742d9faee569f19450dbd7bcf7118608 (patch) | |
tree | 2a9549ada8848973a753a7c73f77a0f3f941acf3 /src/common | |
parent | Merge pull request #1643 from MerryMage/make_unique (diff) | |
parent | frd:u: Initial stub some functions (diff) | |
download | yuzu-dccadce0742d9faee569f19450dbd7bcf7118608.tar yuzu-dccadce0742d9faee569f19450dbd7bcf7118608.tar.gz yuzu-dccadce0742d9faee569f19450dbd7bcf7118608.tar.bz2 yuzu-dccadce0742d9faee569f19450dbd7bcf7118608.tar.lz yuzu-dccadce0742d9faee569f19450dbd7bcf7118608.tar.xz yuzu-dccadce0742d9faee569f19450dbd7bcf7118608.tar.zst yuzu-dccadce0742d9faee569f19450dbd7bcf7118608.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 cfbfbc2a7..3d39f94d5 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp @@ -34,6 +34,7 @@ namespace Log { SUB(Kernel, SVC) \ CLS(Service) \ SUB(Service, SRV) \ + SUB(Service, FRD) \ SUB(Service, FS) \ SUB(Service, ERR) \ SUB(Service, APT) \ diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 4f6856f3d..b8eede3b8 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h @@ -49,6 +49,7 @@ enum class Class : ClassType { Service, ///< HLE implementation of system services. Each major service /// should have its own subclass. Service_SRV, ///< The SRV (Service Directory) implementation + Service_FRD, ///< The FRD (Friends) service Service_FS, ///< The FS (Filesystem) service implementation Service_ERR, ///< The ERR (Error) port implementation Service_APT, ///< The APT (Applets) service |