summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
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 0d036bfaa..e3ff5f705 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -32,6 +32,7 @@
32#include "core/hle/service/ns/ns.h" 32#include "core/hle/service/ns/ns.h"
33#include "core/hle/service/nvdrv/nvdrv.h" 33#include "core/hle/service/nvdrv/nvdrv.h"
34#include "core/hle/service/pctl/pctl.h" 34#include "core/hle/service/pctl/pctl.h"
35#include "core/hle/service/pm/pm.h"
35#include "core/hle/service/prepo/prepo.h" 36#include "core/hle/service/prepo/prepo.h"
36#include "core/hle/service/service.h" 37#include "core/hle/service/service.h"
37#include "core/hle/service/set/settings.h" 38#include "core/hle/service/set/settings.h"
@@ -199,6 +200,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
199 Nvidia::InstallInterfaces(*sm); 200 Nvidia::InstallInterfaces(*sm);
200 PCTL::InstallInterfaces(*sm); 201 PCTL::InstallInterfaces(*sm);
201 PlayReport::InstallInterfaces(*sm); 202 PlayReport::InstallInterfaces(*sm);
203 PM::InstallInterfaces(*sm);
202 Sockets::InstallInterfaces(*sm); 204 Sockets::InstallInterfaces(*sm);
203 SPL::InstallInterfaces(*sm); 205 SPL::InstallInterfaces(*sm);
204 SSL::InstallInterfaces(*sm); 206 SSL::InstallInterfaces(*sm);