From 3fb124961eb99a2dfaacdc32541464387901edc1 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Wed, 25 Jul 2018 22:57:08 -0400 Subject: service: Add ldr services Adds the skeleton for the ldr-related services based off the information provided on Switch Brew. --- src/core/hle/service/service.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/core/hle/service/service.cpp') 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) { FileSystem::InstallInterfaces(*sm); Friend::InstallInterfaces(*sm); HID::InstallInterfaces(*sm); + LDR::InstallInterfaces(*sm); LM::InstallInterfaces(*sm); MM::InstallInterfaces(*sm); NFP::InstallInterfaces(*sm); -- cgit v1.2.3