aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorSebastian Valle <subv2112@gmail.com>2018-07-25 23:43:47 -0500
committerGitHub <noreply@github.com>2018-07-25 23:43:47 -0500
commit8ac52c6b5640757862194ac4fe78f669feb9a463 (patch)
treea89b1f3867e40982bb1dea6fa1722c16aa257bf4 /src/core/hle/service/service.cpp
parent0e05f98be24e3a3fe1d6c6efd449b2d02b41bf16 (diff)
parent7458e71f2463d86e1dd2b2a2b91f1b8b4c2f67b1 (diff)
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 @@
#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);