aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar purpasmart96 <kanzoconfigz@hotmail.com>2015-03-27 16:51:54 -0700
committerGravatar purpasmart96 <kanzoconfigz@hotmail.com>2015-04-03 19:36:03 -0700
commitd6c9af600fba67de7efaa1128b000a06c3b6f230 (patch)
tree77c8716aa0332664e9d156cbaf95231861110f4f /src/core/hle/service/service.cpp
parent3fd2cc566b38d34c587140ce3dbc580f85e34717 (diff)
IR: Move The IR services to their own folder and implement "GetHandles"
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index eeb40465..134ff174 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -24,8 +24,6 @@
#include "core/hle/service/gsp_gpu.h"
#include "core/hle/service/gsp_lcd.h"
#include "core/hle/service/http_c.h"
-#include "core/hle/service/ir_rst.h"
-#include "core/hle/service/ir_u.h"
#include "core/hle/service/ldr_ro.h"
#include "core/hle/service/mic_u.h"
#include "core/hle/service/ndm_u.h"
@@ -45,6 +43,7 @@
#include "core/hle/service/fs/archive.h"
#include "core/hle/service/cfg/cfg.h"
#include "core/hle/service/hid/hid.h"
+#include "core/hle/service/ir/ir.h"
#include "core/hle/service/ptm/ptm.h"
namespace Service {
@@ -73,6 +72,7 @@ void Init() {
Service::APT::Init();
Service::PTM::Init();
Service::HID::Init();
+ Service::IR::Init();
AddService(new AC_U::Interface);
AddService(new ACT_U::Interface);
@@ -91,8 +91,6 @@ void Init() {
AddService(new GSP_GPU::Interface);
AddService(new GSP_LCD::Interface);
AddService(new HTTP_C::Interface);
- AddService(new IR_RST::Interface);
- AddService(new IR_U::Interface);
AddService(new LDR_RO::Interface);
AddService(new MIC_U::Interface);
AddService(new NDM_U::Interface);
@@ -112,6 +110,7 @@ void Init() {
/// Shutdown ServiceManager
void Shutdown() {
+ Service::IR::Shutdown();
Service::HID::Shutdown();
Service::PTM::Shutdown();
Service::APT::Shutdown();