diff options
| author | Mat M <mathew1800@gmail.com> | 2018-07-25 18:51:59 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-25 18:51:59 -0400 |
| commit | d245610939219a3631a9a1850ffd8a504ce7d9d8 (patch) | |
| tree | 1fd5498efd5e166f5575dc5b2cd8ddf3566ab100 /src/core/hle/service/service.cpp | |
| parent | 19b5ae5a253a58604a3b535bbee8009e58c77ac7 (diff) | |
| parent | 417571297661ed13f1426d6ec7ffc748f4eea0f0 (diff) | |
Merge pull request #820 from lioncash/es
service: Add the es service
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 0d036bfaa..b70d0d517 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -21,6 +21,7 @@ #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/es/es.h" #include "core/hle/service/fatal/fatal.h" #include "core/hle/service/filesystem/filesystem.h" #include "core/hle/service/friend/friend.h" @@ -187,6 +188,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) { APM::InstallInterfaces(*sm); BCAT::InstallInterfaces(*sm); Audio::InstallInterfaces(*sm); + ES::InstallInterfaces(*sm); Fatal::InstallInterfaces(*sm); FileSystem::InstallInterfaces(*sm); Friend::InstallInterfaces(*sm); |
