summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2018-07-26 18:00:50 -0400
committerGravatar Lioncash2018-07-26 18:06:17 -0400
commitf49248437e2ae65f5f55dd152ac22278682227a9 (patch)
treea4bee9346a4e2a4b8f336f919c3bec68ed8c16e2 /src/core/hle/service/service.cpp
parentMerge pull request #836 from FearlessTobi/port-3594 (diff)
downloadyuzu-f49248437e2ae65f5f55dd152ac22278682227a9.tar.gz
yuzu-f49248437e2ae65f5f55dd152ac22278682227a9.tar.xz
yuzu-f49248437e2ae65f5f55dd152ac22278682227a9.zip
service: Add the btdrv service
Adds the skeleton for the btdrv 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.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 8b84fd349..1654db231 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -21,6 +21,7 @@
21#include "core/hle/service/apm/apm.h" 21#include "core/hle/service/apm/apm.h"
22#include "core/hle/service/audio/audio.h" 22#include "core/hle/service/audio/audio.h"
23#include "core/hle/service/bcat/bcat.h" 23#include "core/hle/service/bcat/bcat.h"
24#include "core/hle/service/btdrv/btdrv.h"
24#include "core/hle/service/erpt/erpt.h" 25#include "core/hle/service/erpt/erpt.h"
25#include "core/hle/service/es/es.h" 26#include "core/hle/service/es/es.h"
26#include "core/hle/service/eupld/eupld.h" 27#include "core/hle/service/eupld/eupld.h"
@@ -193,8 +194,9 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
193 AM::InstallInterfaces(*sm, nv_flinger); 194 AM::InstallInterfaces(*sm, nv_flinger);
194 AOC::InstallInterfaces(*sm); 195 AOC::InstallInterfaces(*sm);
195 APM::InstallInterfaces(*sm); 196 APM::InstallInterfaces(*sm);
196 BCAT::InstallInterfaces(*sm);
197 Audio::InstallInterfaces(*sm); 197 Audio::InstallInterfaces(*sm);
198 BCAT::InstallInterfaces(*sm);
199 BtDrv::InstallInterfaces(*sm);
198 ERPT::InstallInterfaces(*sm); 200 ERPT::InstallInterfaces(*sm);
199 ES::InstallInterfaces(*sm); 201 ES::InstallInterfaces(*sm);
200 EUPLD::InstallInterfaces(*sm); 202 EUPLD::InstallInterfaces(*sm);