diff options
author | bunnei <bunneidev@gmail.com> | 2022-02-17 02:42:49 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-17 02:42:49 +0100 |
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 yuzu-027ff7847ca47669561f990cbb2f3c27b1e65be9.tar.gz yuzu-027ff7847ca47669561f990cbb2f3c27b1e65be9.tar.bz2 yuzu-027ff7847ca47669561f990cbb2f3c27b1e65be9.tar.lz yuzu-027ff7847ca47669561f990cbb2f3c27b1e65be9.tar.xz yuzu-027ff7847ca47669561f990cbb2f3c27b1e65be9.tar.zst yuzu-027ff7847ca47669561f990cbb2f3c27b1e65be9.zip |
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 @@ #include "core/hle/service/mig/mig.h" #include "core/hle/service/mii/mii.h" #include "core/hle/service/mm/mm_u.h" +#include "core/hle/service/mnpp/mnpp_app.h" #include "core/hle/service/ncm/ncm.h" #include "core/hle/service/nfc/nfc.h" #include "core/hle/service/nfp/nfp.h" @@ -265,6 +266,7 @@ Services::Services(std::shared_ptr<SM::ServiceManager>& sm, Core::System& system Migration::InstallInterfaces(*sm, system); Mii::InstallInterfaces(*sm, system); MM::InstallInterfaces(*sm, system); + MNPP::InstallInterfaces(*sm, system); NCM::InstallInterfaces(*sm, system); NFC::InstallInterfaces(*sm, system); NFP::InstallInterfaces(*sm, system); |