diff options
| author | bunnei <bunneidev@gmail.com> | 2018-07-27 14:29:27 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-27 14:29:27 -0700 |
| commit | 0191a1e526f62a16a14ce92c354429807cca01a5 (patch) | |
| tree | c20ea340d6654dfa1749c94c59afd902965f20d6 /src/core/hle/service/service.cpp | |
| parent | 2128ab2d21ff577429c141f1f72d8f43dacf5758 (diff) | |
| parent | 50dadc33e3bc60ac7a87bd822e147fef9e052a71 (diff) | |
Merge pull request #845 from lioncash/nfc
service: Add nfc services
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index d2c05cc92..8026d27a7 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -35,6 +35,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" @@ -211,6 +212,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); |
