summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2018-07-26 01:16:08 -0400
committerGravatar Lioncash2018-07-26 01:48:06 -0400
commit8781beaf0d2cdb2889697c6919277c24e5e6e7b1 (patch)
treecaf20b7b78428a802b9a89dfc16e9c38ff019096 /src/core/hle/service/service.cpp
parentMerge pull request #828 from lioncash/ldr (diff)
downloadyuzu-8781beaf0d2cdb2889697c6919277c24e5e6e7b1.tar.gz
yuzu-8781beaf0d2cdb2889697c6919277c24e5e6e7b1.tar.xz
yuzu-8781beaf0d2cdb2889697c6919277c24e5e6e7b1.zip
service: Add ldn services
Adds ldn services based off information provided by Switch Brew.
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 @@
28#include "core/hle/service/filesystem/filesystem.h" 28#include "core/hle/service/filesystem/filesystem.h"
29#include "core/hle/service/friend/friend.h" 29#include "core/hle/service/friend/friend.h"
30#include "core/hle/service/hid/hid.h" 30#include "core/hle/service/hid/hid.h"
31#include "core/hle/service/ldn/ldn.h"
31#include "core/hle/service/ldr/ldr.h" 32#include "core/hle/service/ldr/ldr.h"
32#include "core/hle/service/lm/lm.h" 33#include "core/hle/service/lm/lm.h"
33#include "core/hle/service/mm/mm_u.h" 34#include "core/hle/service/mm/mm_u.h"
@@ -199,6 +200,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
199 FileSystem::InstallInterfaces(*sm); 200 FileSystem::InstallInterfaces(*sm);
200 Friend::InstallInterfaces(*sm); 201 Friend::InstallInterfaces(*sm);
201 HID::InstallInterfaces(*sm); 202 HID::InstallInterfaces(*sm);
203 LDN::InstallInterfaces(*sm);
202 LDR::InstallInterfaces(*sm); 204 LDR::InstallInterfaces(*sm);
203 LM::InstallInterfaces(*sm); 205 LM::InstallInterfaces(*sm);
204 MM::InstallInterfaces(*sm); 206 MM::InstallInterfaces(*sm);