summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-27 20:32:39 +0200
committerLioncash <mathew1800@gmail.com>2018-07-27 20:50:24 +0200
commit04d144aa40009811268a6fe485ef74fc23f2fb0c (patch)
tree026021f7a043f6f622ec841f49aa8022d786084e /src/core/hle/service/service.cpp
parentMerge pull request #837 from lioncash/priv (diff)
downloadyuzu-04d144aa40009811268a6fe485ef74fc23f2fb0c.tar
yuzu-04d144aa40009811268a6fe485ef74fc23f2fb0c.tar.gz
yuzu-04d144aa40009811268a6fe485ef74fc23f2fb0c.tar.bz2
yuzu-04d144aa40009811268a6fe485ef74fc23f2fb0c.tar.lz
yuzu-04d144aa40009811268a6fe485ef74fc23f2fb0c.tar.xz
yuzu-04d144aa40009811268a6fe485ef74fc23f2fb0c.tar.zst
yuzu-04d144aa40009811268a6fe485ef74fc23f2fb0c.zip
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 8b84fd349..443ab5857 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -33,6 +33,7 @@
#include "core/hle/service/ldr/ldr.h"
#include "core/hle/service/lm/lm.h"
#include "core/hle/service/mm/mm_u.h"
+#include "core/hle/service/nfc/nfc.h"
#include "core/hle/service/nfp/nfp.h"
#include "core/hle/service/nifm/nifm.h"
#include "core/hle/service/nim/nim.h"
@@ -207,6 +208,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
LDR::InstallInterfaces(*sm);
LM::InstallInterfaces(*sm);
MM::InstallInterfaces(*sm);
+ NFC::InstallInterfaces(*sm);
NFP::InstallInterfaces(*sm);
NIFM::InstallInterfaces(*sm);
NIM::InstallInterfaces(*sm);