aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/spl/csrng.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-06-15 02:36:52 -0400
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-06-16 01:46:45 -0400
commitded36b86887a3f8d727af6d3d30d069da871b475 (patch)
tree138991fa104136f10b3f2af71ffe28e332c6207d /src/core/hle/service/spl/csrng.cpp
parentfaf11fe46d1568da0b60a9bfb0b0452dc32c45a6 (diff)
spl: Add the general SPL interface
Diffstat (limited to 'src/core/hle/service/spl/csrng.cpp')
-rw-r--r--src/core/hle/service/spl/csrng.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/spl/csrng.cpp b/src/core/hle/service/spl/csrng.cpp
index 1beca417c..9c7f89475 100644
--- a/src/core/hle/service/spl/csrng.cpp
+++ b/src/core/hle/service/spl/csrng.cpp
@@ -9,7 +9,7 @@ namespace Service::SPL {
CSRNG::CSRNG(Core::System& system_, std::shared_ptr<Module> module_)
: Interface(system_, std::move(module_), "csrng") {
static const FunctionInfo functions[] = {
- {0, &CSRNG::GetRandomBytes, "GetRandomBytes"},
+ {0, &CSRNG::GenerateRandomBytes, "GenerateRandomBytes"},
};
RegisterHandlers(functions);
}