diff options
| author | 2016-12-13 09:35:24 +0300 | |
|---|---|---|
| committer | 2016-12-14 09:05:46 +0300 | |
| commit | 5dea1faeddc519b7f93f4be23a4a774b44469764 (patch) | |
| tree | 9b1478280fbb19f204e591766e122aa0b2ed8a49 /src/core/hle/service/service.cpp | |
| parent | Merge pull request #2315 from JamePeng/fix-gsp_gpu-code (diff) | |
| download | yuzu-5dea1faeddc519b7f93f4be23a4a774b44469764.tar.gz yuzu-5dea1faeddc519b7f93f4be23a4a774b44469764.tar.xz yuzu-5dea1faeddc519b7f93f4be23a4a774b44469764.zip | |
Service/ACT: move ACT services to folder
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 6 |
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 @@ | |||
| 5 | #include "common/logging/log.h" | 5 | #include "common/logging/log.h" |
| 6 | #include "common/string_util.h" | 6 | #include "common/string_util.h" |
| 7 | #include "core/hle/service/ac_u.h" | 7 | #include "core/hle/service/ac_u.h" |
| 8 | #include "core/hle/service/act_a.h" | 8 | #include "core/hle/service/act/act.h" |
| 9 | #include "core/hle/service/act_u.h" | ||
| 10 | #include "core/hle/service/am/am.h" | 9 | #include "core/hle/service/am/am.h" |
| 11 | #include "core/hle/service/apt/apt.h" | 10 | #include "core/hle/service/apt/apt.h" |
| 12 | #include "core/hle/service/boss/boss.h" | 11 | #include "core/hle/service/boss/boss.h" |
| @@ -113,6 +112,7 @@ void Init() { | |||
| 113 | AddNamedPort(new ERR::ERR_F); | 112 | AddNamedPort(new ERR::ERR_F); |
| 114 | 113 | ||
| 115 | FS::ArchiveInit(); | 114 | FS::ArchiveInit(); |
| 115 | ACT::Init(); | ||
| 116 | AM::Init(); | 116 | AM::Init(); |
| 117 | APT::Init(); | 117 | APT::Init(); |
| 118 | BOSS::Init(); | 118 | BOSS::Init(); |
| @@ -132,8 +132,6 @@ void Init() { | |||
| 132 | QTM::Init(); | 132 | QTM::Init(); |
| 133 | 133 | ||
| 134 | AddService(new AC::AC_U); | 134 | AddService(new AC::AC_U); |
| 135 | AddService(new ACT::ACT_A); | ||
| 136 | AddService(new ACT::ACT_U); | ||
| 137 | AddService(new CSND::CSND_SND); | 135 | AddService(new CSND::CSND_SND); |
| 138 | AddService(new DSP_DSP::Interface); | 136 | AddService(new DSP_DSP::Interface); |
| 139 | AddService(new GSP::GSP_GPU); | 137 | AddService(new GSP::GSP_GPU); |