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 b91081542..1b9822ddf 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -11,6 +11,7 @@
11#include "core/hle/service/am_net.h" 11#include "core/hle/service/am_net.h"
12#include "core/hle/service/apt_u.h" 12#include "core/hle/service/apt_u.h"
13#include "core/hle/service/boss_u.h" 13#include "core/hle/service/boss_u.h"
14#include "core/hle/service/cecd_u.h"
14#include "core/hle/service/cfg_i.h" 15#include "core/hle/service/cfg_i.h"
15#include "core/hle/service/cfg_u.h" 16#include "core/hle/service/cfg_u.h"
16#include "core/hle/service/csnd_snd.h" 17#include "core/hle/service/csnd_snd.h"
@@ -90,6 +91,7 @@ void Init() {
90 g_manager->AddService(new AM_NET::Interface); 91 g_manager->AddService(new AM_NET::Interface);
91 g_manager->AddService(new APT_U::Interface); 92 g_manager->AddService(new APT_U::Interface);
92 g_manager->AddService(new BOSS_U::Interface); 93 g_manager->AddService(new BOSS_U::Interface);
94 g_manager->AddService(new CECD_U::Interface);
93 g_manager->AddService(new CFG_I::Interface); 95 g_manager->AddService(new CFG_I::Interface);
94 g_manager->AddService(new CFG_U::Interface); 96 g_manager->AddService(new CFG_U::Interface);
95 g_manager->AddService(new CSND_SND::Interface); 97 g_manager->AddService(new CSND_SND::Interface);