summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorMat M <mathew1800@gmail.com>2018-07-26 00:51:59 +0200
committerGitHub <noreply@github.com>2018-07-26 00:51:59 +0200
commitd245610939219a3631a9a1850ffd8a504ce7d9d8 (patch)
tree1fd5498efd5e166f5575dc5b2cd8ddf3566ab100 /src/core/hle/service/service.cpp
parentMerge pull request #821 from lioncash/wait (diff)
parentservice: Add the es service (diff)
downloadyuzu-d245610939219a3631a9a1850ffd8a504ce7d9d8.tar
yuzu-d245610939219a3631a9a1850ffd8a504ce7d9d8.tar.gz
yuzu-d245610939219a3631a9a1850ffd8a504ce7d9d8.tar.bz2
yuzu-d245610939219a3631a9a1850ffd8a504ce7d9d8.tar.lz
yuzu-d245610939219a3631a9a1850ffd8a504ce7d9d8.tar.xz
yuzu-d245610939219a3631a9a1850ffd8a504ce7d9d8.tar.zst
yuzu-d245610939219a3631a9a1850ffd8a504ce7d9d8.zip
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp2
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);