aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authormailwl <mailwl@gmail.com>2016-12-13 09:35:24 +0300
committermailwl <mailwl@gmail.com>2016-12-14 09:05:46 +0300
commit5dea1faeddc519b7f93f4be23a4a774b44469764 (patch)
tree9b1478280fbb19f204e591766e122aa0b2ed8a49 /src/core/hle/service/service.cpp
parentda995a4377ba5194ca9759c6b7f62adf081f25a3 (diff)
Service/ACT: move ACT services to folder
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index effecc043..3e70e05ae 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -5,8 +5,7 @@
#include "common/logging/log.h"
#include "common/string_util.h"
#include "core/hle/service/ac_u.h"
-#include "core/hle/service/act_a.h"
-#include "core/hle/service/act_u.h"
+#include "core/hle/service/act/act.h"
#include "core/hle/service/am/am.h"
#include "core/hle/service/apt/apt.h"
#include "core/hle/service/boss/boss.h"
@@ -113,6 +112,7 @@ void Init() {
AddNamedPort(new ERR::ERR_F);
FS::ArchiveInit();
+ ACT::Init();
AM::Init();
APT::Init();
BOSS::Init();
@@ -132,8 +132,6 @@ void Init() {
QTM::Init();
AddService(new AC::AC_U);
- AddService(new ACT::ACT_A);
- AddService(new ACT::ACT_U);
AddService(new CSND::CSND_SND);
AddService(new DSP_DSP::Interface);
AddService(new GSP::GSP_GPU);