diff options
| author | 2016-12-15 13:51:29 -0500 | |
|---|---|---|
| committer | 2016-12-15 13:51:29 -0500 | |
| commit | bdb6956879870277a364b2fd23d52c527568d40e (patch) | |
| tree | 3bd36d4f088aba00c306b6d00df0a6eff5df23ae /src/core/hle/service/service.cpp | |
| parent | Merge pull request #2321 from yuriks/flush-pages (diff) | |
| parent | Service/ACT: move ACT services to folder (diff) | |
| download | yuzu-bdb6956879870277a364b2fd23d52c527568d40e.tar.gz yuzu-bdb6956879870277a364b2fd23d52c527568d40e.tar.xz yuzu-bdb6956879870277a364b2fd23d52c527568d40e.zip | |
Merge pull request #2314 from mailwl/account
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 2bc3fdc82..25a7aeea8 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -9,8 +9,7 @@ | |||
| 9 | 9 | ||
| 10 | #include "core/hle/kernel/server_port.h" | 10 | #include "core/hle/kernel/server_port.h" |
| 11 | #include "core/hle/service/ac_u.h" | 11 | #include "core/hle/service/ac_u.h" |
| 12 | #include "core/hle/service/act_a.h" | 12 | #include "core/hle/service/act/act.h" |
| 13 | #include "core/hle/service/act_u.h" | ||
| 14 | #include "core/hle/service/am/am.h" | 13 | #include "core/hle/service/am/am.h" |
| 15 | #include "core/hle/service/apt/apt.h" | 14 | #include "core/hle/service/apt/apt.h" |
| 16 | #include "core/hle/service/boss/boss.h" | 15 | #include "core/hle/service/boss/boss.h" |
| @@ -139,6 +138,7 @@ void Init() { | |||
| 139 | AddNamedPort(new ERR::ERR_F); | 138 | AddNamedPort(new ERR::ERR_F); |
| 140 | 139 | ||
| 141 | FS::ArchiveInit(); | 140 | FS::ArchiveInit(); |
| 141 | ACT::Init(); | ||
| 142 | AM::Init(); | 142 | AM::Init(); |
| 143 | APT::Init(); | 143 | APT::Init(); |
| 144 | BOSS::Init(); | 144 | BOSS::Init(); |
| @@ -158,8 +158,6 @@ void Init() { | |||
| 158 | QTM::Init(); | 158 | QTM::Init(); |
| 159 | 159 | ||
| 160 | AddService(new AC::AC_U); | 160 | AddService(new AC::AC_U); |
| 161 | AddService(new ACT::ACT_A); | ||
| 162 | AddService(new ACT::ACT_U); | ||
| 163 | AddService(new CSND::CSND_SND); | 161 | AddService(new CSND::CSND_SND); |
| 164 | AddService(new DSP_DSP::Interface); | 162 | AddService(new DSP_DSP::Interface); |
| 165 | AddService(new GSP::GSP_GPU); | 163 | AddService(new GSP::GSP_GPU); |