summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/spl/module.cpp
diff options
context:
space:
mode:
authorzkitx <zkitx@zkitx.jp>2021-03-11 08:36:48 +0100
committerzkitx <zkitx@zkitx.jp>2021-03-11 08:36:48 +0100
commitad653550ebf9515c522d9c36f1409c440c427e8d (patch)
tree2d81444bf8fe377f5af023f5ebbfc07ad8454205 /src/core/hle/service/spl/module.cpp
parentMerge pull request #5891 from ameerj/bgra-ogl (diff)
downloadyuzu-ad653550ebf9515c522d9c36f1409c440c427e8d.tar
yuzu-ad653550ebf9515c522d9c36f1409c440c427e8d.tar.gz
yuzu-ad653550ebf9515c522d9c36f1409c440c427e8d.tar.bz2
yuzu-ad653550ebf9515c522d9c36f1409c440c427e8d.tar.lz
yuzu-ad653550ebf9515c522d9c36f1409c440c427e8d.tar.xz
yuzu-ad653550ebf9515c522d9c36f1409c440c427e8d.tar.zst
yuzu-ad653550ebf9515c522d9c36f1409c440c427e8d.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/spl/module.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/hle/service/spl/module.cpp b/src/core/hle/service/spl/module.cpp
index dea6b0fe0..6903dd534 100644
--- a/src/core/hle/service/spl/module.cpp
+++ b/src/core/hle/service/spl/module.cpp
@@ -43,6 +43,11 @@ void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system
auto module = std::make_shared<Module>();
std::make_shared<CSRNG>(system, module)->InstallAsService(service_manager);
std::make_shared<SPL>(system, module)->InstallAsService(service_manager);
+ std::make_shared<SPL_MIG>(system, module)->InstallAsService(service_manager);
+ std::make_shared<SPL_FS>(system, module)->InstallAsService(service_manager);
+ std::make_shared<SPL_SSL>(system, module)->InstallAsService(service_manager);
+ std::make_shared<SPL_ES>(system, module)->InstallAsService(service_manager);
+ std::make_shared<SPL_MANU>(system, module)->InstallAsService(service_manager);
}
} // namespace Service::SPL