summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-07-27 13:06:11 -0700
committerGravatar GitHub2018-07-27 13:06:11 -0700
commit833ebbb6269c21dbc9cef7f70f6c3bb4e2bc776c (patch)
treed16c8f5777d31ea4f36f421984cacd74584243ef /src/core/hle/service/service.cpp
parentMerge pull request #841 from lioncash/btdrv (diff)
parentservice/lbl: Implement EnableVrMode, DisableVrMode and GetVrMode (diff)
downloadyuzu-833ebbb6269c21dbc9cef7f70f6c3bb4e2bc776c.tar.gz
yuzu-833ebbb6269c21dbc9cef7f70f6c3bb4e2bc776c.tar.xz
yuzu-833ebbb6269c21dbc9cef7f70f6c3bb4e2bc776c.zip
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.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 1654db231..d2c05cc92 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -30,6 +30,7 @@
30#include "core/hle/service/friend/friend.h" 30#include "core/hle/service/friend/friend.h"
31#include "core/hle/service/grc/grc.h" 31#include "core/hle/service/grc/grc.h"
32#include "core/hle/service/hid/hid.h" 32#include "core/hle/service/hid/hid.h"
33#include "core/hle/service/lbl/lbl.h"
33#include "core/hle/service/ldn/ldn.h" 34#include "core/hle/service/ldn/ldn.h"
34#include "core/hle/service/ldr/ldr.h" 35#include "core/hle/service/ldr/ldr.h"
35#include "core/hle/service/lm/lm.h" 36#include "core/hle/service/lm/lm.h"
@@ -205,6 +206,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
205 Friend::InstallInterfaces(*sm); 206 Friend::InstallInterfaces(*sm);
206 GRC::InstallInterfaces(*sm); 207 GRC::InstallInterfaces(*sm);
207 HID::InstallInterfaces(*sm); 208 HID::InstallInterfaces(*sm);
209 LBL::InstallInterfaces(*sm);
208 LDN::InstallInterfaces(*sm); 210 LDN::InstallInterfaces(*sm);
209 LDR::InstallInterfaces(*sm); 211 LDR::InstallInterfaces(*sm);
210 LM::InstallInterfaces(*sm); 212 LM::InstallInterfaces(*sm);