diff options
| author | 2016-12-12 11:56:43 +0300 | |
|---|---|---|
| committer | 2016-12-30 09:20:11 +0300 | |
| commit | c6f4b93f2ec7ba6c20329a87e25fb3251dd72f70 (patch) | |
| tree | 352d62f2d93ff76bc5da18bece388adccdd1ace9 /src/core/hle/service/service.cpp | |
| parent | Merge pull request #2240 from wwylele/auto-region (diff) | |
| download | yuzu-c6f4b93f2ec7ba6c20329a87e25fb3251dd72f70.tar.gz yuzu-c6f4b93f2ec7ba6c20329a87e25fb3251dd72f70.tar.xz yuzu-c6f4b93f2ec7ba6c20329a87e25fb3251dd72f70.zip | |
Service/AC: add ac:i service
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 7e52a05d9..e23f864a3 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -6,9 +6,8 @@ | |||
| 6 | 6 | ||
| 7 | #include "common/logging/log.h" | 7 | #include "common/logging/log.h" |
| 8 | #include "common/string_util.h" | 8 | #include "common/string_util.h" |
| 9 | |||
| 10 | #include "core/hle/kernel/server_port.h" | 9 | #include "core/hle/kernel/server_port.h" |
| 11 | #include "core/hle/service/ac_u.h" | 10 | #include "core/hle/service/ac/ac.h" |
| 12 | #include "core/hle/service/act/act.h" | 11 | #include "core/hle/service/act/act.h" |
| 13 | #include "core/hle/service/am/am.h" | 12 | #include "core/hle/service/am/am.h" |
| 14 | #include "core/hle/service/apt/apt.h" | 13 | #include "core/hle/service/apt/apt.h" |
| @@ -138,6 +137,7 @@ void Init() { | |||
| 138 | AddNamedPort(new ERR::ERR_F); | 137 | AddNamedPort(new ERR::ERR_F); |
| 139 | 138 | ||
| 140 | FS::ArchiveInit(); | 139 | FS::ArchiveInit(); |
| 140 | AC::Init(); | ||
| 141 | ACT::Init(); | 141 | ACT::Init(); |
| 142 | AM::Init(); | 142 | AM::Init(); |
| 143 | APT::Init(); | 143 | APT::Init(); |
| @@ -158,7 +158,6 @@ void Init() { | |||
| 158 | PTM::Init(); | 158 | PTM::Init(); |
| 159 | QTM::Init(); | 159 | QTM::Init(); |
| 160 | 160 | ||
| 161 | AddService(new AC::AC_U); | ||
| 162 | AddService(new CSND::CSND_SND); | 161 | AddService(new CSND::CSND_SND); |
| 163 | AddService(new DSP_DSP::Interface); | 162 | AddService(new DSP_DSP::Interface); |
| 164 | AddService(new GSP::GSP_GPU); | 163 | AddService(new GSP::GSP_GPU); |
| @@ -191,6 +190,7 @@ void Shutdown() { | |||
| 191 | BOSS::Shutdown(); | 190 | BOSS::Shutdown(); |
| 192 | APT::Shutdown(); | 191 | APT::Shutdown(); |
| 193 | AM::Shutdown(); | 192 | AM::Shutdown(); |
| 193 | AC::Shutdown(); | ||
| 194 | FS::ArchiveShutdown(); | 194 | FS::ArchiveShutdown(); |
| 195 | 195 | ||
| 196 | g_srv_services.clear(); | 196 | g_srv_services.clear(); |