diff options
| author | 2020-11-20 14:06:37 -0800 | |
|---|---|---|
| committer | 2020-11-20 14:06:37 -0800 | |
| commit | c47c3d723f5b33c608ee6bf7d766b513d453a66f (patch) | |
| tree | 8d2c5ff2c0dfcf77cab2145f7474dcfb114ff806 /src/common/logging | |
| parent | Merge pull request #4941 from lioncash/config (diff) | |
| parent | olsc: Move member initialization to after member functions. (diff) | |
| download | yuzu-c47c3d723f5b33c608ee6bf7d766b513d453a66f.tar.gz yuzu-c47c3d723f5b33c608ee6bf7d766b513d453a66f.tar.xz yuzu-c47c3d723f5b33c608ee6bf7d766b513d453a66f.zip | |
Merge pull request #4951 from bunnei/olsc-stub
hle: service: Stub OLSC Initialize and SetSaveDataBackupSettingEnabled functions.
Diffstat (limited to 'src/common/logging')
| -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 90dfa22ca..7859344b9 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp | |||
| @@ -222,6 +222,7 @@ void DebuggerBackend::Write(const Entry& entry) { | |||
| 222 | SUB(Service, NPNS) \ | 222 | SUB(Service, NPNS) \ |
| 223 | SUB(Service, NS) \ | 223 | SUB(Service, NS) \ |
| 224 | SUB(Service, NVDRV) \ | 224 | SUB(Service, NVDRV) \ |
| 225 | SUB(Service, OLSC) \ | ||
| 225 | SUB(Service, PCIE) \ | 226 | SUB(Service, PCIE) \ |
| 226 | SUB(Service, PCTL) \ | 227 | SUB(Service, PCTL) \ |
| 227 | SUB(Service, PCV) \ | 228 | SUB(Service, PCV) \ |
diff --git a/src/common/logging/log.h b/src/common/logging/log.h index 13a4f1e30..835894918 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h | |||
| @@ -95,6 +95,7 @@ enum class Class : ClassType { | |||
| 95 | Service_NPNS, ///< The NPNS service | 95 | Service_NPNS, ///< The NPNS service |
| 96 | Service_NS, ///< The NS services | 96 | Service_NS, ///< The NS services |
| 97 | Service_NVDRV, ///< The NVDRV (Nvidia driver) service | 97 | Service_NVDRV, ///< The NVDRV (Nvidia driver) service |
| 98 | Service_OLSC, ///< The OLSC service | ||
| 98 | Service_PCIE, ///< The PCIe service | 99 | Service_PCIE, ///< The PCIe service |
| 99 | Service_PCTL, ///< The PCTL (Parental control) service | 100 | Service_PCTL, ///< The PCTL (Parental control) service |
| 100 | Service_PCV, ///< The PCV service | 101 | Service_PCV, ///< The PCV service |