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 8026d27a7..de3723980 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -35,6 +35,7 @@
35#include "core/hle/service/ldr/ldr.h" 35#include "core/hle/service/ldr/ldr.h"
36#include "core/hle/service/lm/lm.h" 36#include "core/hle/service/lm/lm.h"
37#include "core/hle/service/mm/mm_u.h" 37#include "core/hle/service/mm/mm_u.h"
38#include "core/hle/service/ncm/ncm.h"
38#include "core/hle/service/nfc/nfc.h" 39#include "core/hle/service/nfc/nfc.h"
39#include "core/hle/service/nfp/nfp.h" 40#include "core/hle/service/nfp/nfp.h"
40#include "core/hle/service/nifm/nifm.h" 41#include "core/hle/service/nifm/nifm.h"
@@ -212,6 +213,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
212 LDR::InstallInterfaces(*sm); 213 LDR::InstallInterfaces(*sm);
213 LM::InstallInterfaces(*sm); 214 LM::InstallInterfaces(*sm);
214 MM::InstallInterfaces(*sm); 215 MM::InstallInterfaces(*sm);
216 NCM::InstallInterfaces(*sm);
215 NFC::InstallInterfaces(*sm); 217 NFC::InstallInterfaces(*sm);
216 NFP::InstallInterfaces(*sm); 218 NFP::InstallInterfaces(*sm);
217 NIFM::InstallInterfaces(*sm); 219 NIFM::InstallInterfaces(*sm);