summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 0de0b13a3..35b648409 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -16,7 +16,6 @@
16#include "core/hle/service/http_c.h" 16#include "core/hle/service/http_c.h"
17#include "core/hle/service/ldr_ro.h" 17#include "core/hle/service/ldr_ro.h"
18#include "core/hle/service/mic_u.h" 18#include "core/hle/service/mic_u.h"
19#include "core/hle/service/ndm_u.h"
20#include "core/hle/service/ns_s.h" 19#include "core/hle/service/ns_s.h"
21#include "core/hle/service/nwm_uds.h" 20#include "core/hle/service/nwm_uds.h"
22#include "core/hle/service/pm_app.h" 21#include "core/hle/service/pm_app.h"
@@ -35,6 +34,7 @@
35#include "core/hle/service/cfg/cfg.h" 34#include "core/hle/service/cfg/cfg.h"
36#include "core/hle/service/hid/hid.h" 35#include "core/hle/service/hid/hid.h"
37#include "core/hle/service/ir/ir.h" 36#include "core/hle/service/ir/ir.h"
37#include "core/hle/service/ndm/ndm.h"
38#include "core/hle/service/news/news.h" 38#include "core/hle/service/news/news.h"
39#include "core/hle/service/nim/nim.h" 39#include "core/hle/service/nim/nim.h"
40#include "core/hle/service/ptm/ptm.h" 40#include "core/hle/service/ptm/ptm.h"
@@ -114,6 +114,7 @@ void Init() {
114 Service::HID::Init(); 114 Service::HID::Init();
115 Service::IR::Init(); 115 Service::IR::Init();
116 Service::NEWS::Init(); 116 Service::NEWS::Init();
117 Service::NDM::Init();
117 Service::NIM::Init(); 118 Service::NIM::Init();
118 Service::PTM::Init(); 119 Service::PTM::Init();
119 120
@@ -126,7 +127,6 @@ void Init() {
126 AddService(new HTTP_C::Interface); 127 AddService(new HTTP_C::Interface);
127 AddService(new LDR_RO::Interface); 128 AddService(new LDR_RO::Interface);
128 AddService(new MIC_U::Interface); 129 AddService(new MIC_U::Interface);
129 AddService(new NDM_U::Interface);
130 AddService(new NS_S::Interface); 130 AddService(new NS_S::Interface);
131 AddService(new NWM_UDS::Interface); 131 AddService(new NWM_UDS::Interface);
132 AddService(new PM_APP::Interface); 132 AddService(new PM_APP::Interface);
@@ -141,6 +141,7 @@ void Init() {
141void Shutdown() { 141void Shutdown() {
142 142
143 Service::PTM::Shutdown(); 143 Service::PTM::Shutdown();
144 Service::NDM::Shutdown();
144 Service::NIM::Shutdown(); 145 Service::NIM::Shutdown();
145 Service::NEWS::Shutdown(); 146 Service::NEWS::Shutdown();
146 Service::IR::Shutdown(); 147 Service::IR::Shutdown();