aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-25 22:57:08 -0400
committerLioncash <mathew1800@gmail.com>2018-07-25 23:11:03 -0400
commit3fb124961eb99a2dfaacdc32541464387901edc1 (patch)
treec659f2ecbfc0ff2390b5eceecd5acf703bdb31bc /src/core/hle/service/service.cpp
parentb0adb9a3d9f91e31231bef33792cbf08cc7ecd7f (diff)
service: Add ldr services
Adds the skeleton for the ldr-related services based off the information provided on 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 4daf13fa3..2ac416b98 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -26,6 +26,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"
@@ -194,6 +195,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);