summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar Sebastian Valle2018-07-25 23:43:47 -0500
committerGravatar GitHub2018-07-25 23:43:47 -0500
commit8ac52c6b5640757862194ac4fe78f669feb9a463 (patch)
treea89b1f3867e40982bb1dea6fa1722c16aa257bf4 /src/core/hle/service/service.cpp
parentMerge pull request #823 from lioncash/nifm (diff)
parentservice: Add eupld services (diff)
downloadyuzu-8ac52c6b5640757862194ac4fe78f669feb9a463.tar.gz
yuzu-8ac52c6b5640757862194ac4fe78f669feb9a463.tar.xz
yuzu-8ac52c6b5640757862194ac4fe78f669feb9a463.zip
Merge pull request #826 from lioncash/erpt
service: Add erpt and eupld services
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 4daf13fa3..4e44063ac 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -21,7 +21,9 @@
21#include "core/hle/service/apm/apm.h" 21#include "core/hle/service/apm/apm.h"
22#include "core/hle/service/audio/audio.h" 22#include "core/hle/service/audio/audio.h"
23#include "core/hle/service/bcat/bcat.h" 23#include "core/hle/service/bcat/bcat.h"
24#include "core/hle/service/erpt/erpt.h"
24#include "core/hle/service/es/es.h" 25#include "core/hle/service/es/es.h"
26#include "core/hle/service/eupld/eupld.h"
25#include "core/hle/service/fatal/fatal.h" 27#include "core/hle/service/fatal/fatal.h"
26#include "core/hle/service/filesystem/filesystem.h" 28#include "core/hle/service/filesystem/filesystem.h"
27#include "core/hle/service/friend/friend.h" 29#include "core/hle/service/friend/friend.h"
@@ -189,7 +191,9 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
189 APM::InstallInterfaces(*sm); 191 APM::InstallInterfaces(*sm);
190 BCAT::InstallInterfaces(*sm); 192 BCAT::InstallInterfaces(*sm);
191 Audio::InstallInterfaces(*sm); 193 Audio::InstallInterfaces(*sm);
194 ERPT::InstallInterfaces(*sm);
192 ES::InstallInterfaces(*sm); 195 ES::InstallInterfaces(*sm);
196 EUPLD::InstallInterfaces(*sm);
193 Fatal::InstallInterfaces(*sm); 197 Fatal::InstallInterfaces(*sm);
194 FileSystem::InstallInterfaces(*sm); 198 FileSystem::InstallInterfaces(*sm);
195 Friend::InstallInterfaces(*sm); 199 Friend::InstallInterfaces(*sm);