diff options
| author | bunnei <bunneidev@gmail.com> | 2018-08-02 14:53:55 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-02 14:53:55 -0400 |
| commit | d0bd01146e382f6aca79ac3a970b292eb30873a0 (patch) | |
| tree | ff2a8f7a08e7daa8ccdfc386cf9b38bd9140d418 /src/core/hle/service/service.cpp | |
| parent | a03c644aed943397f7a4e44715a167e0471b6262 (diff) | |
| parent | 42c517132298005b3882837131cccf4d27331ed0 (diff) | |
Merge pull request #893 from lioncash/psc
service: Add the psc 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 828666e9b..025f0c696 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -52,6 +52,7 @@ #include "core/hle/service/pcv/pcv.h" #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/service.h" #include "core/hle/service/set/settings.h" #include "core/hle/service/sm/controller.h" @@ -238,6 +239,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) { PCV::InstallInterfaces(*sm); PlayReport::InstallInterfaces(*sm); PM::InstallInterfaces(*sm); + PSC::InstallInterfaces(*sm); Set::InstallInterfaces(*sm); Sockets::InstallInterfaces(*sm); SPL::InstallInterfaces(*sm); |
