diff options
author | bunnei <bunneidev@gmail.com> | 2022-02-17 02:42:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-17 02:42:49 +0100 |
commit | 027ff7847ca47669561f990cbb2f3c27b1e65be9 (patch) | |
tree | a5c8f68b6c6db306324906f6b8794f01f0eb75b3 /src/common | |
parent | Merge pull request #7899 from Kelebek1/test (diff) | |
parent | service/mnpp: Stub mnpp_app (diff) | |
download | yuzu-027ff7847ca47669561f990cbb2f3c27b1e65be9.tar yuzu-027ff7847ca47669561f990cbb2f3c27b1e65be9.tar.gz yuzu-027ff7847ca47669561f990cbb2f3c27b1e65be9.tar.bz2 yuzu-027ff7847ca47669561f990cbb2f3c27b1e65be9.tar.lz yuzu-027ff7847ca47669561f990cbb2f3c27b1e65be9.tar.xz yuzu-027ff7847ca47669561f990cbb2f3c27b1e65be9.tar.zst yuzu-027ff7847ca47669561f990cbb2f3c27b1e65be9.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/logging/filter.cpp | 1 | ||||
-rw-r--r-- | src/common/logging/types.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/common/logging/filter.cpp b/src/common/logging/filter.cpp index b898a652c..4afc1369a 100644 --- a/src/common/logging/filter.cpp +++ b/src/common/logging/filter.cpp @@ -108,6 +108,7 @@ bool ParseFilterRule(Filter& instance, Iterator begin, Iterator end) { SUB(Service, Migration) \ SUB(Service, Mii) \ SUB(Service, MM) \ + SUB(Service, MNPP) \ SUB(Service, NCM) \ SUB(Service, NFC) \ SUB(Service, NFP) \ diff --git a/src/common/logging/types.h b/src/common/logging/types.h index 9ed0c7ad6..2b6e4daa7 100644 --- a/src/common/logging/types.h +++ b/src/common/logging/types.h @@ -76,6 +76,7 @@ enum class Class : u8 { Service_Migration, ///< The migration service Service_Mii, ///< The Mii service Service_MM, ///< The MM (Multimedia) service + Service_MNPP, ///< The MNPP service Service_NCM, ///< The NCM service Service_NFC, ///< The NFC (Near-field communication) service Service_NFP, ///< The NFP service |