diff options
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 f3190e0fa..0672ac2e3 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); |
| @@ -192,6 +191,7 @@ void Shutdown() { | |||
| 192 | BOSS::Shutdown(); | 191 | BOSS::Shutdown(); |
| 193 | APT::Shutdown(); | 192 | APT::Shutdown(); |
| 194 | AM::Shutdown(); | 193 | AM::Shutdown(); |
| 194 | AC::Shutdown(); | ||
| 195 | FS::ArchiveShutdown(); | 195 | FS::ArchiveShutdown(); |
| 196 | 196 | ||
| 197 | g_srv_services.clear(); | 197 | g_srv_services.clear(); |