summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-26 07:16:08 +0200
committerLioncash <mathew1800@gmail.com>2018-07-26 07:48:06 +0200
commit8781beaf0d2cdb2889697c6919277c24e5e6e7b1 (patch)
treecaf20b7b78428a802b9a89dfc16e9c38ff019096 /src/core/hle/service/service.cpp
parentMerge pull request #828 from lioncash/ldr (diff)
downloadyuzu-8781beaf0d2cdb2889697c6919277c24e5e6e7b1.tar
yuzu-8781beaf0d2cdb2889697c6919277c24e5e6e7b1.tar.gz
yuzu-8781beaf0d2cdb2889697c6919277c24e5e6e7b1.tar.bz2
yuzu-8781beaf0d2cdb2889697c6919277c24e5e6e7b1.tar.lz
yuzu-8781beaf0d2cdb2889697c6919277c24e5e6e7b1.tar.xz
yuzu-8781beaf0d2cdb2889697c6919277c24e5e6e7b1.tar.zst
yuzu-8781beaf0d2cdb2889697c6919277c24e5e6e7b1.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 482989ea7..1e24d33e2 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/ldn/ldn.h"
#include "core/hle/service/ldr/ldr.h"
#include "core/hle/service/lm/lm.h"
#include "core/hle/service/mm/mm_u.h"
@@ -199,6 +200,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
FileSystem::InstallInterfaces(*sm);
Friend::InstallInterfaces(*sm);
HID::InstallInterfaces(*sm);
+ LDN::InstallInterfaces(*sm);
LDR::InstallInterfaces(*sm);
LM::InstallInterfaces(*sm);
MM::InstallInterfaces(*sm);