summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-02 03:59:22 +0200
committerLioncash <mathew1800@gmail.com>2018-08-02 05:31:27 +0200
commit5233040ab480f0d0ace929247646d9eba6e77f9f (patch)
tree69af92737db3933b51eff0972c41ccfb4cfb38a8 /src/core/hle/service/service.cpp
parentMerge pull request #888 from lioncash/caps (diff)
downloadyuzu-5233040ab480f0d0ace929247646d9eba6e77f9f.tar
yuzu-5233040ab480f0d0ace929247646d9eba6e77f9f.tar.gz
yuzu-5233040ab480f0d0ace929247646d9eba6e77f9f.tar.bz2
yuzu-5233040ab480f0d0ace929247646d9eba6e77f9f.tar.lz
yuzu-5233040ab480f0d0ace929247646d9eba6e77f9f.tar.xz
yuzu-5233040ab480f0d0ace929247646d9eba6e77f9f.tar.zst
yuzu-5233040ab480f0d0ace929247646d9eba6e77f9f.zip
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 @@
#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);