diff options
| author | 2018-07-25 19:01:28 -0700 | |
|---|---|---|
| committer | 2018-07-25 19:01:28 -0700 | |
| commit | 851089b4824d4d25cdc9f242af11fdca74c148fe (patch) | |
| tree | f426baa3eedd15a1572884584ec18ba14b9a88a7 /src/core/hle/service/service.cpp | |
| parent | Merge pull request #820 from lioncash/es (diff) | |
| parent | service: Add pm services (diff) | |
| download | yuzu-851089b4824d4d25cdc9f242af11fdca74c148fe.tar.gz yuzu-851089b4824d4d25cdc9f242af11fdca74c148fe.tar.xz yuzu-851089b4824d4d25cdc9f242af11fdca74c148fe.zip | |
Merge pull request #822 from lioncash/pm
service: Add pm services
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 b70d0d517..4daf13fa3 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -33,6 +33,7 @@ | |||
| 33 | #include "core/hle/service/ns/ns.h" | 33 | #include "core/hle/service/ns/ns.h" |
| 34 | #include "core/hle/service/nvdrv/nvdrv.h" | 34 | #include "core/hle/service/nvdrv/nvdrv.h" |
| 35 | #include "core/hle/service/pctl/pctl.h" | 35 | #include "core/hle/service/pctl/pctl.h" |
| 36 | #include "core/hle/service/pm/pm.h" | ||
| 36 | #include "core/hle/service/prepo/prepo.h" | 37 | #include "core/hle/service/prepo/prepo.h" |
| 37 | #include "core/hle/service/service.h" | 38 | #include "core/hle/service/service.h" |
| 38 | #include "core/hle/service/set/settings.h" | 39 | #include "core/hle/service/set/settings.h" |
| @@ -201,6 +202,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) { | |||
| 201 | Nvidia::InstallInterfaces(*sm); | 202 | Nvidia::InstallInterfaces(*sm); |
| 202 | PCTL::InstallInterfaces(*sm); | 203 | PCTL::InstallInterfaces(*sm); |
| 203 | PlayReport::InstallInterfaces(*sm); | 204 | PlayReport::InstallInterfaces(*sm); |
| 205 | PM::InstallInterfaces(*sm); | ||
| 204 | Sockets::InstallInterfaces(*sm); | 206 | Sockets::InstallInterfaces(*sm); |
| 205 | SPL::InstallInterfaces(*sm); | 207 | SPL::InstallInterfaces(*sm); |
| 206 | SSL::InstallInterfaces(*sm); | 208 | SSL::InstallInterfaces(*sm); |