summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-01 21:40:55 +0200
committerLioncash <mathew1800@gmail.com>2018-08-01 22:13:04 +0200
commitd109279543c36d20b98ceabdd921e6a9a0015782 (patch)
tree24c4b73abf24a6106ce1f2a86da77f41736b6624 /src/core/hle/service/service.cpp
parentMerge pull request #885 from greggameplayer/R32-Float (diff)
downloadyuzu-d109279543c36d20b98ceabdd921e6a9a0015782.tar
yuzu-d109279543c36d20b98ceabdd921e6a9a0015782.tar.gz
yuzu-d109279543c36d20b98ceabdd921e6a9a0015782.tar.bz2
yuzu-d109279543c36d20b98ceabdd921e6a9a0015782.tar.lz
yuzu-d109279543c36d20b98ceabdd921e6a9a0015782.tar.xz
yuzu-d109279543c36d20b98ceabdd921e6a9a0015782.tar.zst
yuzu-d109279543c36d20b98ceabdd921e6a9a0015782.zip
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index fccc4c461..747a2252e 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/bpc/bpc.h"
#include "core/hle/service/btdrv/btdrv.h"
#include "core/hle/service/btm/btm.h"
#include "core/hle/service/erpt/erpt.h"
@@ -47,6 +48,7 @@
#include "core/hle/service/nvdrv/nvdrv.h"
#include "core/hle/service/pcie/pcie.h"
#include "core/hle/service/pctl/pctl.h"
+#include "core/hle/service/pcv/pcv.h"
#include "core/hle/service/pm/pm.h"
#include "core/hle/service/prepo/prepo.h"
#include "core/hle/service/service.h"
@@ -204,6 +206,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
APM::InstallInterfaces(*sm);
Audio::InstallInterfaces(*sm);
BCAT::InstallInterfaces(*sm);
+ BPC::InstallInterfaces(*sm);
BtDrv::InstallInterfaces(*sm);
BTM::InstallInterfaces(*sm);
ERPT::InstallInterfaces(*sm);
@@ -230,6 +233,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) {
Nvidia::InstallInterfaces(*sm);
PCIe::InstallInterfaces(*sm);
PCTL::InstallInterfaces(*sm);
+ PCV::InstallInterfaces(*sm);
PlayReport::InstallInterfaces(*sm);
PM::InstallInterfaces(*sm);
Set::InstallInterfaces(*sm);