diff options
| author | 2016-06-04 19:38:54 -0400 | |
|---|---|---|
| committer | 2016-06-04 19:43:33 -0400 | |
| commit | 64b6a7c0062d0b68cd4c3ca3dc6126e1e6891a70 (patch) | |
| tree | feab9094d3ac6745f50389e1bf3ce962ababbe64 /src/core/hle/service/service.cpp | |
| parent | Merge pull request #1863 from mailwl/gpu-threadid-reset (diff) | |
| download | yuzu-64b6a7c0062d0b68cd4c3ca3dc6126e1e6891a70.tar.gz yuzu-64b6a7c0062d0b68cd4c3ca3dc6126e1e6891a70.tar.xz yuzu-64b6a7c0062d0b68cd4c3ca3dc6126e1e6891a70.zip | |
service: Add other DLP services
Specifically, dlp::CLNT and dlp::FKCL
Moves them to their own folder like with other services.
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index d7e7d4fe3..395880843 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -10,7 +10,6 @@ | |||
| 10 | #include "core/hle/service/act_a.h" | 10 | #include "core/hle/service/act_a.h" |
| 11 | #include "core/hle/service/act_u.h" | 11 | #include "core/hle/service/act_u.h" |
| 12 | #include "core/hle/service/csnd_snd.h" | 12 | #include "core/hle/service/csnd_snd.h" |
| 13 | #include "core/hle/service/dlp_srvr.h" | ||
| 14 | #include "core/hle/service/dsp_dsp.h" | 13 | #include "core/hle/service/dsp_dsp.h" |
| 15 | #include "core/hle/service/err_f.h" | 14 | #include "core/hle/service/err_f.h" |
| 16 | #include "core/hle/service/gsp_gpu.h" | 15 | #include "core/hle/service/gsp_gpu.h" |
| @@ -31,6 +30,7 @@ | |||
| 31 | #include "core/hle/service/boss/boss.h" | 30 | #include "core/hle/service/boss/boss.h" |
| 32 | #include "core/hle/service/cam/cam.h" | 31 | #include "core/hle/service/cam/cam.h" |
| 33 | #include "core/hle/service/cecd/cecd.h" | 32 | #include "core/hle/service/cecd/cecd.h" |
| 33 | #include "core/hle/service/dlp/dlp.h" | ||
| 34 | #include "core/hle/service/frd/frd.h" | 34 | #include "core/hle/service/frd/frd.h" |
| 35 | #include "core/hle/service/fs/archive.h" | 35 | #include "core/hle/service/fs/archive.h" |
| 36 | #include "core/hle/service/cfg/cfg.h" | 36 | #include "core/hle/service/cfg/cfg.h" |
| @@ -111,6 +111,7 @@ void Init() { | |||
| 111 | Service::CAM::Init(); | 111 | Service::CAM::Init(); |
| 112 | Service::CECD::Init(); | 112 | Service::CECD::Init(); |
| 113 | Service::CFG::Init(); | 113 | Service::CFG::Init(); |
| 114 | Service::DLP::Init(); | ||
| 114 | Service::FRD::Init(); | 115 | Service::FRD::Init(); |
| 115 | Service::HID::Init(); | 116 | Service::HID::Init(); |
| 116 | Service::IR::Init(); | 117 | Service::IR::Init(); |
| @@ -123,7 +124,6 @@ void Init() { | |||
| 123 | AddService(new ACT_A::Interface); | 124 | AddService(new ACT_A::Interface); |
| 124 | AddService(new ACT_U::Interface); | 125 | AddService(new ACT_U::Interface); |
| 125 | AddService(new CSND_SND::Interface); | 126 | AddService(new CSND_SND::Interface); |
| 126 | AddService(new DLP_SRVR::Interface); | ||
| 127 | AddService(new DSP_DSP::Interface); | 127 | AddService(new DSP_DSP::Interface); |
| 128 | AddService(new GSP_GPU::Interface); | 128 | AddService(new GSP_GPU::Interface); |
| 129 | AddService(new GSP_LCD::Interface); | 129 | AddService(new GSP_LCD::Interface); |
| @@ -150,6 +150,7 @@ void Shutdown() { | |||
| 150 | Service::IR::Shutdown(); | 150 | Service::IR::Shutdown(); |
| 151 | Service::HID::Shutdown(); | 151 | Service::HID::Shutdown(); |
| 152 | Service::FRD::Shutdown(); | 152 | Service::FRD::Shutdown(); |
| 153 | Service::DLP::Shutdown(); | ||
| 153 | Service::CFG::Shutdown(); | 154 | Service::CFG::Shutdown(); |
| 154 | Service::CECD::Shutdown(); | 155 | Service::CECD::Shutdown(); |
| 155 | Service::CAM::Shutdown(); | 156 | Service::CAM::Shutdown(); |