diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-07-27 13:48:33 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-07-27 14:20:07 -0400 |
| commit | c2c543e8f7ee0bc69c529ef073ab7513b9ed2729 (patch) | |
| tree | d7b810fc830212a12564627369c72f5df7080278 /src/core/hle/service/service.cpp | |
| parent | dc4e5f91596392bcdfb316105f80feea636c72c2 (diff) | |
service: Add the lbl service
Adds the skeleton of the lbl service based off the information provided
by Switch Brew.
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
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::ServiceManager>& sm) { Friend::InstallInterfaces(*sm); GRC::InstallInterfaces(*sm); HID::InstallInterfaces(*sm); + LBL::InstallInterfaces(*sm); LDN::InstallInterfaces(*sm); LDR::InstallInterfaces(*sm); LM::InstallInterfaces(*sm); |
