summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-04-27 06:49:40 +0200
committerGitHub <noreply@github.com>2018-04-27 06:49:40 +0200
commit3c404964097a0882ce9651571ec02c54474350ce (patch)
tree37932b0e46a5190fbe54a83fe06706d171e6141a /src/core/hle/service/service.cpp
parentMerge pull request #406 from lioncash/frontend (diff)
parentSwitched to NGLOG_WARNING (diff)
downloadyuzu-3c404964097a0882ce9651571ec02c54474350ce.tar
yuzu-3c404964097a0882ce9651571ec02c54474350ce.tar.gz
yuzu-3c404964097a0882ce9651571ec02c54474350ce.tar.bz2
yuzu-3c404964097a0882ce9651571ec02c54474350ce.tar.lz
yuzu-3c404964097a0882ce9651571ec02c54474350ce.tar.xz
yuzu-3c404964097a0882ce9651571ec02c54474350ce.tar.zst
yuzu-3c404964097a0882ce9651571ec02c54474350ce.zip
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index a85c406be..34d691b90 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -29,7 +29,8 @@
#include "core/hle/service/nifm/nifm.h"
#include "core/hle/service/ns/ns.h"
#include "core/hle/service/nvdrv/nvdrv.h"
-#include "core/hle/service/pctl/module.h"
+#include "core/hle/service/pctl/pctl.h"
+#include "core/hle/service/prepo/prepo.h"
#include "core/hle/service/service.h"
#include "core/hle/service/set/settings.h"
#include "core/hle/service/sm/controller.h"
@@ -192,6 +193,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
NS::InstallInterfaces(*sm);
Nvidia::InstallInterfaces(*sm);
PCTL::InstallInterfaces(*sm);
+ PlayReport::InstallInterfaces(*sm);
Sockets::InstallInterfaces(*sm);
SPL::InstallInterfaces(*sm);
SSL::InstallInterfaces(*sm);