summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-07-28 10:46:09 -0700
committerGravatar GitHub2018-07-28 10:46:09 -0700
commit458fdda7005f5c84dad652792254260b01a1f389 (patch)
treefd1932868a8a7d5c675d272879577a1581909aae /src/core/hle/service/service.cpp
parentMerge pull request #846 from lioncash/mii (diff)
parentservice: Add ncm services (diff)
downloadyuzu-458fdda7005f5c84dad652792254260b01a1f389.tar.gz
yuzu-458fdda7005f5c84dad652792254260b01a1f389.tar.xz
yuzu-458fdda7005f5c84dad652792254260b01a1f389.zip
Merge pull request #847 from lioncash/ncm
service: Add ncm services
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 98c912eb3..5180a0c93 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -36,6 +36,7 @@
36#include "core/hle/service/lm/lm.h" 36#include "core/hle/service/lm/lm.h"
37#include "core/hle/service/mii/mii.h" 37#include "core/hle/service/mii/mii.h"
38#include "core/hle/service/mm/mm_u.h" 38#include "core/hle/service/mm/mm_u.h"
39#include "core/hle/service/ncm/ncm.h"
39#include "core/hle/service/nfc/nfc.h" 40#include "core/hle/service/nfc/nfc.h"
40#include "core/hle/service/nfp/nfp.h" 41#include "core/hle/service/nfp/nfp.h"
41#include "core/hle/service/nifm/nifm.h" 42#include "core/hle/service/nifm/nifm.h"
@@ -214,6 +215,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
214 LM::InstallInterfaces(*sm); 215 LM::InstallInterfaces(*sm);
215 Mii::InstallInterfaces(*sm); 216 Mii::InstallInterfaces(*sm);
216 MM::InstallInterfaces(*sm); 217 MM::InstallInterfaces(*sm);
218 NCM::InstallInterfaces(*sm);
217 NFC::InstallInterfaces(*sm); 219 NFC::InstallInterfaces(*sm);
218 NFP::InstallInterfaces(*sm); 220 NFP::InstallInterfaces(*sm);
219 NIFM::InstallInterfaces(*sm); 221 NIFM::InstallInterfaces(*sm);