diff options
| author | 2018-10-20 17:22:15 -0400 | |
|---|---|---|
| committer | 2018-10-20 18:01:07 -0400 | |
| commit | 3b8c0f8885c9e590f4317d8de51ea3d669ccdfcd (patch) | |
| tree | 61b10c6249df5732518963b66ad75d0ac13fb3b8 /src/core/hle/service/service.cpp | |
| parent | Merge pull request #1535 from ReinUsesLisp/fixup-position (diff) | |
| download | yuzu-3b8c0f8885c9e590f4317d8de51ea3d669ccdfcd.tar.gz yuzu-3b8c0f8885c9e590f4317d8de51ea3d669ccdfcd.tar.xz yuzu-3b8c0f8885c9e590f4317d8de51ea3d669ccdfcd.zip | |
service: Add skeleton for psm service
Seems to be the power controller. Listed in switchbrew under the category PTM services.
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index a225cb4cb..fdd65cc68 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -57,6 +57,7 @@ | |||
| 57 | #include "core/hle/service/pm/pm.h" | 57 | #include "core/hle/service/pm/pm.h" |
| 58 | #include "core/hle/service/prepo/prepo.h" | 58 | #include "core/hle/service/prepo/prepo.h" |
| 59 | #include "core/hle/service/psc/psc.h" | 59 | #include "core/hle/service/psc/psc.h" |
| 60 | #include "core/hle/service/ptm/psm.h" | ||
| 60 | #include "core/hle/service/service.h" | 61 | #include "core/hle/service/service.h" |
| 61 | #include "core/hle/service/set/settings.h" | 62 | #include "core/hle/service/set/settings.h" |
| 62 | #include "core/hle/service/sm/sm.h" | 63 | #include "core/hle/service/sm/sm.h" |
| @@ -244,6 +245,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm, FileSys::VfsFilesystem& vfs) | |||
| 244 | PlayReport::InstallInterfaces(*sm); | 245 | PlayReport::InstallInterfaces(*sm); |
| 245 | PM::InstallInterfaces(*sm); | 246 | PM::InstallInterfaces(*sm); |
| 246 | PSC::InstallInterfaces(*sm); | 247 | PSC::InstallInterfaces(*sm); |
| 248 | PSM::InstallInterfaces(*sm); | ||
| 247 | Set::InstallInterfaces(*sm); | 249 | Set::InstallInterfaces(*sm); |
| 248 | Sockets::InstallInterfaces(*sm); | 250 | Sockets::InstallInterfaces(*sm); |
| 249 | SPL::InstallInterfaces(*sm); | 251 | SPL::InstallInterfaces(*sm); |