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 1e24d33e2..e167ea827 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -34,6 +34,7 @@
34#include "core/hle/service/mm/mm_u.h" 34#include "core/hle/service/mm/mm_u.h"
35#include "core/hle/service/nfp/nfp.h" 35#include "core/hle/service/nfp/nfp.h"
36#include "core/hle/service/nifm/nifm.h" 36#include "core/hle/service/nifm/nifm.h"
37#include "core/hle/service/nim/nim.h"
37#include "core/hle/service/ns/ns.h" 38#include "core/hle/service/ns/ns.h"
38#include "core/hle/service/nvdrv/nvdrv.h" 39#include "core/hle/service/nvdrv/nvdrv.h"
39#include "core/hle/service/pctl/pctl.h" 40#include "core/hle/service/pctl/pctl.h"
@@ -206,6 +207,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
206 MM::InstallInterfaces(*sm); 207 MM::InstallInterfaces(*sm);
207 NFP::InstallInterfaces(*sm); 208 NFP::InstallInterfaces(*sm);
208 NIFM::InstallInterfaces(*sm); 209 NIFM::InstallInterfaces(*sm);
210 NIM::InstallInterfaces(*sm);
209 NS::InstallInterfaces(*sm); 211 NS::InstallInterfaces(*sm);
210 Nvidia::InstallInterfaces(*sm); 212 Nvidia::InstallInterfaces(*sm);
211 PCTL::InstallInterfaces(*sm); 213 PCTL::InstallInterfaces(*sm);