diff options
author | bunnei <bunneidev@gmail.com> | 2021-11-12 03:05:37 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2022-03-25 02:13:32 +0100 |
commit | 0704b645df4829eb125e43b420cf12914fb3cf28 (patch) | |
tree | f9254ca9418ff1c20986c798f9bd8135b672580c /src/common/logging | |
parent | Merge pull request #8074 from liamwhite/cached-words (diff) | |
download | yuzu-0704b645df4829eb125e43b420cf12914fb3cf28.tar yuzu-0704b645df4829eb125e43b420cf12914fb3cf28.tar.gz yuzu-0704b645df4829eb125e43b420cf12914fb3cf28.tar.bz2 yuzu-0704b645df4829eb125e43b420cf12914fb3cf28.tar.lz yuzu-0704b645df4829eb125e43b420cf12914fb3cf28.tar.xz yuzu-0704b645df4829eb125e43b420cf12914fb3cf28.tar.zst yuzu-0704b645df4829eb125e43b420cf12914fb3cf28.zip |
Diffstat (limited to 'src/common/logging')
-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 4afc1369a..9120cc178 100644 --- a/src/common/logging/filter.cpp +++ b/src/common/logging/filter.cpp @@ -119,6 +119,7 @@ bool ParseFilterRule(Filter& instance, Iterator begin, Iterator end) { SUB(Service, NPNS) \ SUB(Service, NS) \ SUB(Service, NVDRV) \ + SUB(Service, NVFlinger) \ SUB(Service, OLSC) \ SUB(Service, PCIE) \ SUB(Service, PCTL) \ diff --git a/src/common/logging/types.h b/src/common/logging/types.h index 2b6e4daa7..f803ab796 100644 --- a/src/common/logging/types.h +++ b/src/common/logging/types.h @@ -87,6 +87,7 @@ enum class Class : u8 { Service_NPNS, ///< The NPNS service Service_NS, ///< The NS services Service_NVDRV, ///< The NVDRV (Nvidia driver) service + Service_NVFlinger, ///< The NVFlinger service Service_OLSC, ///< The OLSC service Service_PCIE, ///< The PCIe service Service_PCTL, ///< The PCTL (Parental control) service |