diff options
| author | 2018-08-01 21:59:22 -0400 | |
|---|---|---|
| committer | 2018-08-01 23:31:27 -0400 | |
| commit | 5233040ab480f0d0ace929247646d9eba6e77f9f (patch) | |
| tree | 69af92737db3933b51eff0972c41ccfb4cfb38a8 /src/common/logging | |
| parent | Merge pull request #888 from lioncash/caps (diff) | |
| download | yuzu-5233040ab480f0d0ace929247646d9eba6e77f9f.tar.gz yuzu-5233040ab480f0d0ace929247646d9eba6e77f9f.tar.xz yuzu-5233040ab480f0d0ace929247646d9eba6e77f9f.zip | |
service: Add psc services
Adds the basic skeleton for the psc services based off the information
provided by Switch Brew.
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 d6714587c..43561d607 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp | |||
| @@ -192,6 +192,7 @@ void FileBackend::Write(const Entry& entry) { | |||
| 192 | SUB(Service, PCTL) \ | 192 | SUB(Service, PCTL) \ |
| 193 | SUB(Service, PCV) \ | 193 | SUB(Service, PCV) \ |
| 194 | SUB(Service, PREPO) \ | 194 | SUB(Service, PREPO) \ |
| 195 | SUB(Service, PSC) \ | ||
| 195 | SUB(Service, SET) \ | 196 | SUB(Service, SET) \ |
| 196 | SUB(Service, SM) \ | 197 | SUB(Service, SM) \ |
| 197 | SUB(Service, SPL) \ | 198 | SUB(Service, SPL) \ |
diff --git a/src/common/logging/log.h b/src/common/logging/log.h index e96d817f4..1763bdeaf 100644 --- a/src/common/logging/log.h +++ b/src/common/logging/log.h | |||
| @@ -79,6 +79,7 @@ enum class Class : ClassType { | |||
| 79 | Service_PCTL, ///< The PCTL (Parental control) service | 79 | Service_PCTL, ///< The PCTL (Parental control) service |
| 80 | Service_PCV, ///< The PCV (Parental control) service | 80 | Service_PCV, ///< The PCV (Parental control) service |
| 81 | Service_PREPO, ///< The PREPO (Play report) service | 81 | Service_PREPO, ///< The PREPO (Play report) service |
| 82 | Service_PSC, ///< The PSC service | ||
| 82 | Service_SET, ///< The SET (Settings) service | 83 | Service_SET, ///< The SET (Settings) service |
| 83 | Service_SM, ///< The SM (Service manager) service | 84 | Service_SM, ///< The SM (Service manager) service |
| 84 | Service_SPL, ///< The SPL service | 85 | Service_SPL, ///< The SPL service |