diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-27 00:00:50 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-27 00:06:17 +0200 |
commit | f49248437e2ae65f5f55dd152ac22278682227a9 (patch) | |
tree | a4bee9346a4e2a4b8f336f919c3bec68ed8c16e2 /src/core/hle/service/service.cpp | |
parent | Merge pull request #836 from FearlessTobi/port-3594 (diff) | |
download | yuzu-f49248437e2ae65f5f55dd152ac22278682227a9.tar yuzu-f49248437e2ae65f5f55dd152ac22278682227a9.tar.gz yuzu-f49248437e2ae65f5f55dd152ac22278682227a9.tar.bz2 yuzu-f49248437e2ae65f5f55dd152ac22278682227a9.tar.lz yuzu-f49248437e2ae65f5f55dd152ac22278682227a9.tar.xz yuzu-f49248437e2ae65f5f55dd152ac22278682227a9.tar.zst yuzu-f49248437e2ae65f5f55dd152ac22278682227a9.zip |
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r-- | src/core/hle/service/service.cpp | 4 |
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 @@ #include "core/hle/service/apm/apm.h" #include "core/hle/service/audio/audio.h" #include "core/hle/service/bcat/bcat.h" +#include "core/hle/service/btdrv/btdrv.h" #include "core/hle/service/erpt/erpt.h" #include "core/hle/service/es/es.h" #include "core/hle/service/eupld/eupld.h" @@ -193,8 +194,9 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) { AM::InstallInterfaces(*sm, nv_flinger); AOC::InstallInterfaces(*sm); APM::InstallInterfaces(*sm); - BCAT::InstallInterfaces(*sm); Audio::InstallInterfaces(*sm); + BCAT::InstallInterfaces(*sm); + BtDrv::InstallInterfaces(*sm); ERPT::InstallInterfaces(*sm); ES::InstallInterfaces(*sm); EUPLD::InstallInterfaces(*sm); |