summaryrefslogtreecommitdiff
path: root/src/core/hle/service/spl
diff options
context:
space:
mode:
authorGravatar Hexagon122018-04-17 18:37:43 +0300
committerGravatar bunnei2018-04-17 11:37:43 -0400
commite52a87b98a8aba7df498f4cdb861484ecd0333ca (patch)
treed23babf7fd3e6b40c77a1ba5141ff3cad6357787 /src/core/hle/service/spl
parentMerge pull request #342 from bunnei/indexed-verts (diff)
downloadyuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.tar.gz
yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.tar.xz
yuzu-e52a87b98a8aba7df498f4cdb861484ecd0333ca.zip
Various service name fixes - part 2 (rebased) (#322)
* Updated ACC with more service names * Updated SVC with more service names * Updated set with more service names * Updated sockets with more service names * Updated SPL with more service names * Updated time with more service names * Updated vi with more service names
Diffstat (limited to 'src/core/hle/service/spl')
-rw-r--r--src/core/hle/service/spl/spl.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/hle/service/spl/spl.cpp b/src/core/hle/service/spl/spl.cpp
index deab29b91..3fcef341e 100644
--- a/src/core/hle/service/spl/spl.cpp
+++ b/src/core/hle/service/spl/spl.cpp
@@ -33,6 +33,12 @@ SPL::SPL(std::shared_ptr<Module> module) : Module::Interface(std::move(module),
33 {23, nullptr, "GetSplWaitEvent"}, 33 {23, nullptr, "GetSplWaitEvent"},
34 {24, nullptr, "SetSharedData"}, 34 {24, nullptr, "SetSharedData"},
35 {25, nullptr, "GetSharedData"}, 35 {25, nullptr, "GetSharedData"},
36 {26, nullptr, "ImportSslRsaKey"},
37 {27, nullptr, "SecureExpModWithSslKey"},
38 {28, nullptr, "ImportEsRsaKey"},
39 {29, nullptr, "SecureExpModWithEsKey"},
40 {30, nullptr, "EncryptManuRsaKeyForImport"},
41 {31, nullptr, "GetPackage2Hash"},
36 }; 42 };
37 RegisterHandlers(functions); 43 RegisterHandlers(functions);
38} 44}