diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-09-14 15:24:46 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-14 15:24:46 +0200 |
commit | 04352a9aef52fde375950df8577debbb896c2ae1 (patch) | |
tree | 9594ac76bca93b802fb17af6a108eb81b330d0b0 /src/common | |
parent | Merge pull request #11479 from Kelebek1/check_all_fbs (diff) | |
parent | ngc: implement service (diff) | |
download | yuzu-04352a9aef52fde375950df8577debbb896c2ae1.tar yuzu-04352a9aef52fde375950df8577debbb896c2ae1.tar.gz yuzu-04352a9aef52fde375950df8577debbb896c2ae1.tar.bz2 yuzu-04352a9aef52fde375950df8577debbb896c2ae1.tar.lz yuzu-04352a9aef52fde375950df8577debbb896c2ae1.tar.xz yuzu-04352a9aef52fde375950df8577debbb896c2ae1.tar.zst yuzu-04352a9aef52fde375950df8577debbb896c2ae1.zip |
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/logging/filter.cpp | 2 | ||||
-rw-r--r-- | src/common/logging/types.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/common/logging/filter.cpp b/src/common/logging/filter.cpp index c95909561..4e3a614a4 100644 --- a/src/common/logging/filter.cpp +++ b/src/common/logging/filter.cpp @@ -112,7 +112,7 @@ bool ParseFilterRule(Filter& instance, Iterator begin, Iterator end) { SUB(Service, NCM) \ SUB(Service, NFC) \ SUB(Service, NFP) \ - SUB(Service, NGCT) \ + SUB(Service, NGC) \ SUB(Service, NIFM) \ SUB(Service, NIM) \ SUB(Service, NOTIF) \ diff --git a/src/common/logging/types.h b/src/common/logging/types.h index 8356e3183..08af50ee0 100644 --- a/src/common/logging/types.h +++ b/src/common/logging/types.h @@ -80,7 +80,7 @@ enum class Class : u8 { Service_NCM, ///< The NCM service Service_NFC, ///< The NFC (Near-field communication) service Service_NFP, ///< The NFP service - Service_NGCT, ///< The NGCT (No Good Content for Terra) service + Service_NGC, ///< The NGC (No Good Content) service Service_NIFM, ///< The NIFM (Network interface) service Service_NIM, ///< The NIM service Service_NOTIF, ///< The NOTIF (Notification) service |