summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/spl/csrng.cpp
diff options
context:
space:
mode:
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);
}