diff options
| author | bunnei <bunneidev@gmail.com> | 2018-07-27 13:06:11 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-27 13:06:11 -0700 |
| commit | 833ebbb6269c21dbc9cef7f70f6c3bb4e2bc776c (patch) | |
| tree | d16c8f5777d31ea4f36f421984cacd74584243ef /src/core/hle/service/service.cpp | |
| parent | d2749ef0ed4fea642bd3e0caa54c49211120f62a (diff) | |
| parent | ea8dd8b6505deddf0057203d73c9524b81d7af9f (diff) | |
Merge pull request #844 from lioncash/lbl
service: Add the lbl service
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 1654db231..d2c05cc92 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -30,6 +30,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" @@ -205,6 +206,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); |
