diff options
| author | 2017-12-28 23:44:39 -0500 | |
|---|---|---|
| committer | 2017-12-28 23:44:39 -0500 | |
| commit | fcd4c1a0dc1345ea3178167fad4582393788824b (patch) | |
| tree | c49c49b3a2682900562741ae98add69d71f4c7a0 /src/core/hle/service/service.cpp | |
| parent | kernel: Add basic support for Domain object. (diff) | |
| download | yuzu-fcd4c1a0dc1345ea3178167fad4582393788824b.tar.gz yuzu-fcd4c1a0dc1345ea3178167fad4582393788824b.tar.xz yuzu-fcd4c1a0dc1345ea3178167fad4582393788824b.zip | |
service: Add empty interface for pctl:a.
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 3394ea414..0fba224e1 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -22,6 +22,7 @@ | |||
| 22 | #include "core/hle/service/gsp_gpu.h" | 22 | #include "core/hle/service/gsp_gpu.h" |
| 23 | #include "core/hle/service/hid/hid.h" | 23 | #include "core/hle/service/hid/hid.h" |
| 24 | #include "core/hle/service/lm/lm.h" | 24 | #include "core/hle/service/lm/lm.h" |
| 25 | #include "core/hle/service/pctl/pctl.h" | ||
| 25 | #include "core/hle/service/service.h" | 26 | #include "core/hle/service/service.h" |
| 26 | #include "core/hle/service/sm/controller.h" | 27 | #include "core/hle/service/sm/controller.h" |
| 27 | #include "core/hle/service/sm/sm.h" | 28 | #include "core/hle/service/sm/sm.h" |
| @@ -173,6 +174,7 @@ void Init() { | |||
| 173 | AOC::InstallInterfaces(*SM::g_service_manager); | 174 | AOC::InstallInterfaces(*SM::g_service_manager); |
| 174 | APM::InstallInterfaces(*SM::g_service_manager); | 175 | APM::InstallInterfaces(*SM::g_service_manager); |
| 175 | LM::InstallInterfaces(*SM::g_service_manager); | 176 | LM::InstallInterfaces(*SM::g_service_manager); |
| 177 | PCTL::InstallInterfaces(*SM::g_service_manager); | ||
| 176 | 178 | ||
| 177 | HID::Init(); | 179 | HID::Init(); |
| 178 | 180 | ||