summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorSebastian Valle <subv2112@gmail.com>2018-07-26 06:44:13 +0200
committerGitHub <noreply@github.com>2018-07-26 06:44:13 +0200
commit1958d07d7d881d631f0aa298f529d95aded736a9 (patch)
tree8f2a83b78bcc1f96b43365472efcc055f986ca71 /src/core/hle/service/service.cpp
parentMerge pull request #826 from lioncash/erpt (diff)
parentservice: Add ldr services (diff)
downloadyuzu-1958d07d7d881d631f0aa298f529d95aded736a9.tar
yuzu-1958d07d7d881d631f0aa298f529d95aded736a9.tar.gz
yuzu-1958d07d7d881d631f0aa298f529d95aded736a9.tar.bz2
yuzu-1958d07d7d881d631f0aa298f529d95aded736a9.tar.lz
yuzu-1958d07d7d881d631f0aa298f529d95aded736a9.tar.xz
yuzu-1958d07d7d881d631f0aa298f529d95aded736a9.tar.zst
yuzu-1958d07d7d881d631f0aa298f529d95aded736a9.zip
Diffstat (limited to '')
-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 4e44063ac..482989ea7 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -28,6 +28,7 @@
#include "core/hle/service/filesystem/filesystem.h"
#include "core/hle/service/friend/friend.h"
#include "core/hle/service/hid/hid.h"
+#include "core/hle/service/ldr/ldr.h"
#include "core/hle/service/lm/lm.h"
#include "core/hle/service/mm/mm_u.h"
#include "core/hle/service/nfp/nfp.h"
@@ -198,6 +199,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
FileSystem::InstallInterfaces(*sm);
Friend::InstallInterfaces(*sm);
HID::InstallInterfaces(*sm);
+ LDR::InstallInterfaces(*sm);
LM::InstallInterfaces(*sm);
MM::InstallInterfaces(*sm);
NFP::InstallInterfaces(*sm);