summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorSebastian Valle <subv2112@gmail.com>2018-07-26 06:43:47 +0200
committerGitHub <noreply@github.com>2018-07-26 06:43:47 +0200
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
yuzu-8ac52c6b5640757862194ac4fe78f669feb9a463.tar.gz
yuzu-8ac52c6b5640757862194ac4fe78f669feb9a463.tar.bz2
yuzu-8ac52c6b5640757862194ac4fe78f669feb9a463.tar.lz
yuzu-8ac52c6b5640757862194ac4fe78f669feb9a463.tar.xz
yuzu-8ac52c6b5640757862194ac4fe78f669feb9a463.tar.zst
yuzu-8ac52c6b5640757862194ac4fe78f669feb9a463.zip
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 @@
#include "core/hle/service/apm/apm.h"
#include "core/hle/service/audio/audio.h"
#include "core/hle/service/bcat/bcat.h"
+#include "core/hle/service/erpt/erpt.h"
#include "core/hle/service/es/es.h"
+#include "core/hle/service/eupld/eupld.h"
#include "core/hle/service/fatal/fatal.h"
#include "core/hle/service/filesystem/filesystem.h"
#include "core/hle/service/friend/friend.h"
@@ -189,7 +191,9 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
APM::InstallInterfaces(*sm);
BCAT::InstallInterfaces(*sm);
Audio::InstallInterfaces(*sm);
+ ERPT::InstallInterfaces(*sm);
ES::InstallInterfaces(*sm);
+ EUPLD::InstallInterfaces(*sm);
Fatal::InstallInterfaces(*sm);
FileSystem::InstallInterfaces(*sm);
Friend::InstallInterfaces(*sm);