summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-07-28 10:45:31 -0700
committerGravatar GitHub2018-07-28 10:45:31 -0700
commitd00dcdb1be093216e144ad63a8bff09b5402914c (patch)
tree8612edabf55ab735774a33645e3080b5c4feab77 /src/core/hle/service/service.cpp
parentMerge pull request #842 from bunnei/audio-core (diff)
parentservice: Add mii services (diff)
downloadyuzu-d00dcdb1be093216e144ad63a8bff09b5402914c.tar.gz
yuzu-d00dcdb1be093216e144ad63a8bff09b5402914c.tar.xz
yuzu-d00dcdb1be093216e144ad63a8bff09b5402914c.zip
Merge pull request #846 from lioncash/mii
service: Add mii 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 8026d27a7..98c912eb3 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -34,6 +34,7 @@
34#include "core/hle/service/ldn/ldn.h" 34#include "core/hle/service/ldn/ldn.h"
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/mii/mii.h"
37#include "core/hle/service/mm/mm_u.h" 38#include "core/hle/service/mm/mm_u.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"
@@ -211,6 +212,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
211 LDN::InstallInterfaces(*sm); 212 LDN::InstallInterfaces(*sm);
212 LDR::InstallInterfaces(*sm); 213 LDR::InstallInterfaces(*sm);
213 LM::InstallInterfaces(*sm); 214 LM::InstallInterfaces(*sm);
215 Mii::InstallInterfaces(*sm);
214 MM::InstallInterfaces(*sm); 216 MM::InstallInterfaces(*sm);
215 NFC::InstallInterfaces(*sm); 217 NFC::InstallInterfaces(*sm);
216 NFP::InstallInterfaces(*sm); 218 NFP::InstallInterfaces(*sm);