diff options
| author | bunnei <bunneidev@gmail.com> | 2018-08-01 21:32:36 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-01 21:32:36 -0400 |
| commit | 200c95db8a816db0170b2fa27992fc719e434e05 (patch) | |
| tree | 24c4b73abf24a6106ce1f2a86da77f41736b6624 /src/core/hle/service/service.cpp | |
| parent | 99a1d7440db6412f5cddcb7e00b523661f16cb53 (diff) | |
| parent | d109279543c36d20b98ceabdd921e6a9a0015782 (diff) | |
Merge pull request #887 from lioncash/pcv
service: Add bpc and pcv services
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 4 |
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); |
