summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/spl/csrng.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2021-06-15 08:36:52 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-06-16 07:46:45 +0200
commitded36b86887a3f8d727af6d3d30d069da871b475 (patch)
tree138991fa104136f10b3f2af71ffe28e332c6207d /src/core/hle/service/spl/csrng.cpp
parentspl: Add SPL types (diff)
downloadyuzu-ded36b86887a3f8d727af6d3d30d069da871b475.tar
yuzu-ded36b86887a3f8d727af6d3d30d069da871b475.tar.gz
yuzu-ded36b86887a3f8d727af6d3d30d069da871b475.tar.bz2
yuzu-ded36b86887a3f8d727af6d3d30d069da871b475.tar.lz
yuzu-ded36b86887a3f8d727af6d3d30d069da871b475.tar.xz
yuzu-ded36b86887a3f8d727af6d3d30d069da871b475.tar.zst
yuzu-ded36b86887a3f8d727af6d3d30d069da871b475.zip
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);
}