diff options
| author | bunnei <bunneidev@gmail.com> | 2018-07-26 12:02:29 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-07-26 12:02:29 -0700 |
| commit | 41d7b020a8637a00992a048f918bff72db858d27 (patch) | |
| tree | 33ea45634828d29c072bb5fba8f5ed05661e2c4e /src/core/hle/service/service.cpp | |
| parent | e4191b624c01154466566421f8ddad58bcf5fb37 (diff) | |
| parent | f916611e321fa07d790e5ddb34fee222ddf7d4f0 (diff) | |
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 @@ #include "core/hle/service/mm/mm_u.h" #include "core/hle/service/nfp/nfp.h" #include "core/hle/service/nifm/nifm.h" +#include "core/hle/service/nim/nim.h" #include "core/hle/service/ns/ns.h" #include "core/hle/service/nvdrv/nvdrv.h" #include "core/hle/service/pctl/pctl.h" @@ -206,6 +207,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) { MM::InstallInterfaces(*sm); NFP::InstallInterfaces(*sm); NIFM::InstallInterfaces(*sm); + NIM::InstallInterfaces(*sm); NS::InstallInterfaces(*sm); Nvidia::InstallInterfaces(*sm); PCTL::InstallInterfaces(*sm); |
