diff options
| author | Sebastian Valle <subv2112@gmail.com> | 2018-07-25 23:43:47 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-25 23:43:47 -0500 |
| commit | 8ac52c6b5640757862194ac4fe78f669feb9a463 (patch) | |
| tree | a89b1f3867e40982bb1dea6fa1722c16aa257bf4 /src/core/hle/service/service.cpp | |
| parent | 0e05f98be24e3a3fe1d6c6efd449b2d02b41bf16 (diff) | |
| parent | 7458e71f2463d86e1dd2b2a2b91f1b8b4c2f67b1 (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.cpp | 4 |
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); |
