summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar exhalatio2016-04-03 06:05:20 +0900
committerGravatar exhalatio2016-04-03 06:05:20 +0900
commitbbdfbe44e6ab029464a466babbf5e53bee4ee1b9 (patch)
tree87ee7ebe6330ba343e1b5cfff922c1f97be93a3e /src/core/hle/service/service.cpp
parentMerge pull request #1566 from MerryMage/audio-codec (diff)
downloadyuzu-bbdfbe44e6ab029464a466babbf5e53bee4ee1b9.tar.gz
yuzu-bbdfbe44e6ab029464a466babbf5e53bee4ee1b9.tar.xz
yuzu-bbdfbe44e6ab029464a466babbf5e53bee4ee1b9.zip
Dummy implementation dlp:SRVR Service.
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 35b648409..7844d2330 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -9,6 +9,7 @@
9#include "core/hle/service/ac_u.h" 9#include "core/hle/service/ac_u.h"
10#include "core/hle/service/act_u.h" 10#include "core/hle/service/act_u.h"
11#include "core/hle/service/csnd_snd.h" 11#include "core/hle/service/csnd_snd.h"
12#include "core/hle/service/dlp_srvr.h"
12#include "core/hle/service/dsp_dsp.h" 13#include "core/hle/service/dsp_dsp.h"
13#include "core/hle/service/err_f.h" 14#include "core/hle/service/err_f.h"
14#include "core/hle/service/gsp_gpu.h" 15#include "core/hle/service/gsp_gpu.h"
@@ -121,6 +122,7 @@ void Init() {
121 AddService(new AC_U::Interface); 122 AddService(new AC_U::Interface);
122 AddService(new ACT_U::Interface); 123 AddService(new ACT_U::Interface);
123 AddService(new CSND_SND::Interface); 124 AddService(new CSND_SND::Interface);
125 AddService(new DLP_SRVR::Interface);
124 AddService(new DSP_DSP::Interface); 126 AddService(new DSP_DSP::Interface);
125 AddService(new GSP_GPU::Interface); 127 AddService(new GSP_GPU::Interface);
126 AddService(new GSP_LCD::Interface); 128 AddService(new GSP_LCD::Interface);