summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2018-08-01 21:59:22 -0400
committerGravatar Lioncash2018-08-01 23:31:27 -0400
commit5233040ab480f0d0ace929247646d9eba6e77f9f (patch)
tree69af92737db3933b51eff0972c41ccfb4cfb38a8 /src/core/hle/service/service.cpp
parentMerge pull request #888 from lioncash/caps (diff)
downloadyuzu-5233040ab480f0d0ace929247646d9eba6e77f9f.tar.gz
yuzu-5233040ab480f0d0ace929247646d9eba6e77f9f.tar.xz
yuzu-5233040ab480f0d0ace929247646d9eba6e77f9f.zip
service: Add psc services
Adds the basic skeleton for the psc services based off the information provided by Switch Brew.
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);