diff options
| author | bunnei <bunneidev@gmail.com> | 2018-10-22 15:27:05 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-22 15:27:05 -0400 |
| commit | ff6b2d457499156584ef51fb6025d2b3958e3aa5 (patch) | |
| tree | 9143e12cc81e8a672cd91d00163a22877f546411 /src/core/hle/service/service.cpp | |
| parent | 65df593951796f57b117e927ce8b467ed27d6a90 (diff) | |
| parent | 314a9483732a2c9cb8861d4ae8b113ebb5ad9406 (diff) | |
Merge pull request #1545 from DarkLordZach/psm
psm: Add psm service and stub commands 0 and 1
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 dd6c6d3b3..a4cf45267 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -58,6 +58,7 @@ #include "core/hle/service/pm/pm.h" #include "core/hle/service/prepo/prepo.h" #include "core/hle/service/psc/psc.h" +#include "core/hle/service/ptm/psm.h" #include "core/hle/service/service.h" #include "core/hle/service/set/settings.h" #include "core/hle/service/sm/sm.h" @@ -246,6 +247,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm, FileSys::VfsFilesystem& vfs) PlayReport::InstallInterfaces(*sm); PM::InstallInterfaces(*sm); PSC::InstallInterfaces(*sm); + PSM::InstallInterfaces(*sm); Set::InstallInterfaces(*sm); Sockets::InstallInterfaces(*sm); SPL::InstallInterfaces(*sm); |
