diff options
author | bunnei <bunneidev@gmail.com> | 2022-07-16 20:30:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-16 20:30:56 +0200 |
commit | 87bb44830bb19f686d345d3640034c11037a691e (patch) | |
tree | 295f050687de9a9a4134a5087942d8d860ad0e35 /src/common | |
parent | Merge pull request #8560 from liamwhite/bitfield-may-alias (diff) | |
parent | service: nifm: Stub GetInternetConnectionStatus (diff) | |
download | yuzu-87bb44830bb19f686d345d3640034c11037a691e.tar yuzu-87bb44830bb19f686d345d3640034c11037a691e.tar.gz yuzu-87bb44830bb19f686d345d3640034c11037a691e.tar.bz2 yuzu-87bb44830bb19f686d345d3640034c11037a691e.tar.lz yuzu-87bb44830bb19f686d345d3640034c11037a691e.tar.xz yuzu-87bb44830bb19f686d345d3640034c11037a691e.tar.zst yuzu-87bb44830bb19f686d345d3640034c11037a691e.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 4acbff649..6de9bacbf 100644 --- a/src/common/logging/filter.cpp +++ b/src/common/logging/filter.cpp @@ -128,7 +128,7 @@ bool ParseFilterRule(Filter& instance, Iterator begin, Iterator end) { SUB(Service, PM) \ SUB(Service, PREPO) \ SUB(Service, PSC) \ - SUB(Service, PSM) \ + SUB(Service, PTM) \ SUB(Service, SET) \ SUB(Service, SM) \ SUB(Service, SPL) \ diff --git a/src/common/logging/types.h b/src/common/logging/types.h index cabb4db8e..595c15ada 100644 --- a/src/common/logging/types.h +++ b/src/common/logging/types.h @@ -95,7 +95,7 @@ enum class Class : u8 { Service_PM, ///< The PM service Service_PREPO, ///< The PREPO (Play report) service Service_PSC, ///< The PSC service - Service_PSM, ///< The PSM service + Service_PTM, ///< The PTM service Service_SET, ///< The SET (Settings) service Service_SM, ///< The SM (Service manager) service Service_SPL, ///< The SPL service |