From c2c543e8f7ee0bc69c529ef073ab7513b9ed2729 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 27 Jul 2018 13:48:33 -0400 Subject: service: Add the lbl service Adds the skeleton of the lbl service based off the information provided by 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 8b84fd349..eb3db1b4d 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -29,6 +29,7 @@ #include "core/hle/service/friend/friend.h" #include "core/hle/service/grc/grc.h" #include "core/hle/service/hid/hid.h" +#include "core/hle/service/lbl/lbl.h" #include "core/hle/service/ldn/ldn.h" #include "core/hle/service/ldr/ldr.h" #include "core/hle/service/lm/lm.h" @@ -203,6 +204,7 @@ void Init(std::shared_ptr& sm) { Friend::InstallInterfaces(*sm); GRC::InstallInterfaces(*sm); HID::InstallInterfaces(*sm); + LBL::InstallInterfaces(*sm); LDN::InstallInterfaces(*sm); LDR::InstallInterfaces(*sm); LM::InstallInterfaces(*sm); -- cgit v1.2.3