diff options
| author | 2018-07-26 12:02:29 -0700 | |
|---|---|---|
| committer | 2018-07-26 12:02:29 -0700 | |
| commit | 41d7b020a8637a00992a048f918bff72db858d27 (patch) | |
| tree | 33ea45634828d29c072bb5fba8f5ed05661e2c4e /src/core/hle/service/service.cpp | |
| parent | Merge pull request #831 from lioncash/ldn (diff) | |
| parent | service: Add the nim services (diff) | |
| download | yuzu-41d7b020a8637a00992a048f918bff72db858d27.tar.gz yuzu-41d7b020a8637a00992a048f918bff72db858d27.tar.xz yuzu-41d7b020a8637a00992a048f918bff72db858d27.zip | |
Merge pull request #832 from lioncash/nim
service: Add the nim 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 1e24d33e2..e167ea827 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -34,6 +34,7 @@ | |||
| 34 | #include "core/hle/service/mm/mm_u.h" | 34 | #include "core/hle/service/mm/mm_u.h" |
| 35 | #include "core/hle/service/nfp/nfp.h" | 35 | #include "core/hle/service/nfp/nfp.h" |
| 36 | #include "core/hle/service/nifm/nifm.h" | 36 | #include "core/hle/service/nifm/nifm.h" |
| 37 | #include "core/hle/service/nim/nim.h" | ||
| 37 | #include "core/hle/service/ns/ns.h" | 38 | #include "core/hle/service/ns/ns.h" |
| 38 | #include "core/hle/service/nvdrv/nvdrv.h" | 39 | #include "core/hle/service/nvdrv/nvdrv.h" |
| 39 | #include "core/hle/service/pctl/pctl.h" | 40 | #include "core/hle/service/pctl/pctl.h" |
| @@ -206,6 +207,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) { | |||
| 206 | MM::InstallInterfaces(*sm); | 207 | MM::InstallInterfaces(*sm); |
| 207 | NFP::InstallInterfaces(*sm); | 208 | NFP::InstallInterfaces(*sm); |
| 208 | NIFM::InstallInterfaces(*sm); | 209 | NIFM::InstallInterfaces(*sm); |
| 210 | NIM::InstallInterfaces(*sm); | ||
| 209 | NS::InstallInterfaces(*sm); | 211 | NS::InstallInterfaces(*sm); |
| 210 | Nvidia::InstallInterfaces(*sm); | 212 | Nvidia::InstallInterfaces(*sm); |
| 211 | PCTL::InstallInterfaces(*sm); | 213 | PCTL::InstallInterfaces(*sm); |