summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2018-07-27 15:39:30 -0400
committerGravatar Lioncash2018-07-27 16:01:29 -0400
commitf46bfdd77dd33b3495d6b9f16a955adc3e2e1bf9 (patch)
treebf510ba8871ea8a6d2064f6f5b0d26626701e146 /src/core/hle/service/service.cpp
parentMerge pull request #837 from lioncash/priv (diff)
downloadyuzu-f46bfdd77dd33b3495d6b9f16a955adc3e2e1bf9.tar.gz
yuzu-f46bfdd77dd33b3495d6b9f16a955adc3e2e1bf9.tar.xz
yuzu-f46bfdd77dd33b3495d6b9f16a955adc3e2e1bf9.zip
service: Add mii services
Adds the skeleton for the mii services based off information provided by Switch Brew
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..76a73f741 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -32,6 +32,7 @@
32#include "core/hle/service/ldn/ldn.h" 32#include "core/hle/service/ldn/ldn.h"
33#include "core/hle/service/ldr/ldr.h" 33#include "core/hle/service/ldr/ldr.h"
34#include "core/hle/service/lm/lm.h" 34#include "core/hle/service/lm/lm.h"
35#include "core/hle/service/mii/mii.h"
35#include "core/hle/service/mm/mm_u.h" 36#include "core/hle/service/mm/mm_u.h"
36#include "core/hle/service/nfp/nfp.h" 37#include "core/hle/service/nfp/nfp.h"
37#include "core/hle/service/nifm/nifm.h" 38#include "core/hle/service/nifm/nifm.h"
@@ -206,6 +207,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
206 LDN::InstallInterfaces(*sm); 207 LDN::InstallInterfaces(*sm);
207 LDR::InstallInterfaces(*sm); 208 LDR::InstallInterfaces(*sm);
208 LM::InstallInterfaces(*sm); 209 LM::InstallInterfaces(*sm);
210 Mii::InstallInterfaces(*sm);
209 MM::InstallInterfaces(*sm); 211 MM::InstallInterfaces(*sm);
210 NFP::InstallInterfaces(*sm); 212 NFP::InstallInterfaces(*sm);
211 NIFM::InstallInterfaces(*sm); 213 NIFM::InstallInterfaces(*sm);