summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-08-02 14:53:55 -0400
committerGravatar GitHub2018-08-02 14:53:55 -0400
commitd0bd01146e382f6aca79ac3a970b292eb30873a0 (patch)
treeff2a8f7a08e7daa8ccdfc386cf9b38bd9140d418 /src/core/hle/service/service.cpp
parentMerge pull request #896 from lioncash/audio-out (diff)
parentlogging/log: Remove incorrect description in PCV doc comment (diff)
downloadyuzu-d0bd01146e382f6aca79ac3a970b292eb30873a0.tar.gz
yuzu-d0bd01146e382f6aca79ac3a970b292eb30873a0.tar.xz
yuzu-d0bd01146e382f6aca79ac3a970b292eb30873a0.zip
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.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 828666e9b..025f0c696 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -52,6 +52,7 @@
52#include "core/hle/service/pcv/pcv.h" 52#include "core/hle/service/pcv/pcv.h"
53#include "core/hle/service/pm/pm.h" 53#include "core/hle/service/pm/pm.h"
54#include "core/hle/service/prepo/prepo.h" 54#include "core/hle/service/prepo/prepo.h"
55#include "core/hle/service/psc/psc.h"
55#include "core/hle/service/service.h" 56#include "core/hle/service/service.h"
56#include "core/hle/service/set/settings.h" 57#include "core/hle/service/set/settings.h"
57#include "core/hle/service/sm/controller.h" 58#include "core/hle/service/sm/controller.h"
@@ -238,6 +239,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
238 PCV::InstallInterfaces(*sm); 239 PCV::InstallInterfaces(*sm);
239 PlayReport::InstallInterfaces(*sm); 240 PlayReport::InstallInterfaces(*sm);
240 PM::InstallInterfaces(*sm); 241 PM::InstallInterfaces(*sm);
242 PSC::InstallInterfaces(*sm);
241 Set::InstallInterfaces(*sm); 243 Set::InstallInterfaces(*sm);
242 Sockets::InstallInterfaces(*sm); 244 Sockets::InstallInterfaces(*sm);
243 SPL::InstallInterfaces(*sm); 245 SPL::InstallInterfaces(*sm);