summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-10-22 15:27:05 -0400
committerGravatar GitHub2018-10-22 15:27:05 -0400
commitff6b2d457499156584ef51fb6025d2b3958e3aa5 (patch)
tree9143e12cc81e8a672cd91d00163a22877f546411 /src/core/hle/service/service.cpp
parentMerge pull request #1541 from lioncash/define (diff)
parentpsm: Stub GetChargerType (diff)
downloadyuzu-ff6b2d457499156584ef51fb6025d2b3958e3aa5.tar.gz
yuzu-ff6b2d457499156584ef51fb6025d2b3958e3aa5.tar.xz
yuzu-ff6b2d457499156584ef51fb6025d2b3958e3aa5.zip
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.cpp2
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 @@
58#include "core/hle/service/pm/pm.h" 58#include "core/hle/service/pm/pm.h"
59#include "core/hle/service/prepo/prepo.h" 59#include "core/hle/service/prepo/prepo.h"
60#include "core/hle/service/psc/psc.h" 60#include "core/hle/service/psc/psc.h"
61#include "core/hle/service/ptm/psm.h"
61#include "core/hle/service/service.h" 62#include "core/hle/service/service.h"
62#include "core/hle/service/set/settings.h" 63#include "core/hle/service/set/settings.h"
63#include "core/hle/service/sm/sm.h" 64#include "core/hle/service/sm/sm.h"
@@ -246,6 +247,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm, FileSys::VfsFilesystem& vfs)
246 PlayReport::InstallInterfaces(*sm); 247 PlayReport::InstallInterfaces(*sm);
247 PM::InstallInterfaces(*sm); 248 PM::InstallInterfaces(*sm);
248 PSC::InstallInterfaces(*sm); 249 PSC::InstallInterfaces(*sm);
250 PSM::InstallInterfaces(*sm);
249 Set::InstallInterfaces(*sm); 251 Set::InstallInterfaces(*sm);
250 Sockets::InstallInterfaces(*sm); 252 Sockets::InstallInterfaces(*sm);
251 SPL::InstallInterfaces(*sm); 253 SPL::InstallInterfaces(*sm);