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.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 287cd48e1..b91081542 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -22,6 +22,7 @@
22#include "core/hle/service/hid_user.h" 22#include "core/hle/service/hid_user.h"
23#include "core/hle/service/ir_rst.h" 23#include "core/hle/service/ir_rst.h"
24#include "core/hle/service/ir_u.h" 24#include "core/hle/service/ir_u.h"
25#include "core/hle/service/ldr_ro.h"
25#include "core/hle/service/mic_u.h" 26#include "core/hle/service/mic_u.h"
26#include "core/hle/service/ndm_u.h" 27#include "core/hle/service/ndm_u.h"
27#include "core/hle/service/nwm_uds.h" 28#include "core/hle/service/nwm_uds.h"
@@ -100,6 +101,7 @@ void Init() {
100 g_manager->AddService(new HID_User::Interface); 101 g_manager->AddService(new HID_User::Interface);
101 g_manager->AddService(new IR_RST::Interface); 102 g_manager->AddService(new IR_RST::Interface);
102 g_manager->AddService(new IR_U::Interface); 103 g_manager->AddService(new IR_U::Interface);
104 g_manager->AddService(new LDR_RO::Interface);
103 g_manager->AddService(new MIC_U::Interface); 105 g_manager->AddService(new MIC_U::Interface);
104 g_manager->AddService(new NDM_U::Interface); 106 g_manager->AddService(new NDM_U::Interface);
105 g_manager->AddService(new NWM_UDS::Interface); 107 g_manager->AddService(new NWM_UDS::Interface);