diff options
| author | 2022-02-16 18:42:49 -0700 | |
|---|---|---|
| committer | 2022-02-16 18:42:49 -0700 | |
| commit | 027ff7847ca47669561f990cbb2f3c27b1e65be9 (patch) | |
| tree | a5c8f68b6c6db306324906f6b8794f01f0eb75b3 /src/core/hle/service/service.cpp | |
| parent | Merge pull request #7899 from Kelebek1/test (diff) | |
| parent | service/mnpp: Stub mnpp_app (diff) | |
| download | yuzu-027ff7847ca47669561f990cbb2f3c27b1e65be9.tar.gz yuzu-027ff7847ca47669561f990cbb2f3c27b1e65be9.tar.xz yuzu-027ff7847ca47669561f990cbb2f3c27b1e65be9.zip | |
Merge pull request #7878 from german77/mnpp
service/mnpp: Stub mnpp_app
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 f54e6fe56..eb1138313 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -39,6 +39,7 @@ | |||
| 39 | #include "core/hle/service/mig/mig.h" | 39 | #include "core/hle/service/mig/mig.h" |
| 40 | #include "core/hle/service/mii/mii.h" | 40 | #include "core/hle/service/mii/mii.h" |
| 41 | #include "core/hle/service/mm/mm_u.h" | 41 | #include "core/hle/service/mm/mm_u.h" |
| 42 | #include "core/hle/service/mnpp/mnpp_app.h" | ||
| 42 | #include "core/hle/service/ncm/ncm.h" | 43 | #include "core/hle/service/ncm/ncm.h" |
| 43 | #include "core/hle/service/nfc/nfc.h" | 44 | #include "core/hle/service/nfc/nfc.h" |
| 44 | #include "core/hle/service/nfp/nfp.h" | 45 | #include "core/hle/service/nfp/nfp.h" |
| @@ -265,6 +266,7 @@ Services::Services(std::shared_ptr<SM::ServiceManager>& sm, Core::System& system | |||
| 265 | Migration::InstallInterfaces(*sm, system); | 266 | Migration::InstallInterfaces(*sm, system); |
| 266 | Mii::InstallInterfaces(*sm, system); | 267 | Mii::InstallInterfaces(*sm, system); |
| 267 | MM::InstallInterfaces(*sm, system); | 268 | MM::InstallInterfaces(*sm, system); |
| 269 | MNPP::InstallInterfaces(*sm, system); | ||
| 268 | NCM::InstallInterfaces(*sm, system); | 270 | NCM::InstallInterfaces(*sm, system); |
| 269 | NFC::InstallInterfaces(*sm, system); | 271 | NFC::InstallInterfaces(*sm, system); |
| 270 | NFP::InstallInterfaces(*sm, system); | 272 | NFP::InstallInterfaces(*sm, system); |