aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/spl/csrng.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-06-22 15:43:10 -0700
committerGitHub <noreply@github.com>2021-06-22 15:43:10 -0700
commit255f8d22d7cbb85b6d7742d46a1a6c55262ad4e1 (patch)
tree514169d4f91fd13b11f8f0f452ec56dffba45cc4 /src/core/hle/service/spl/csrng.cpp
parent791d3d1beaf6658a56fea52fe8935c451df180b6 (diff)
parent4a4e30431995cd37684f1d254c1bb83180c01112 (diff)
Merge pull request #6472 from Morph1984/spl
service: spl: Implement general SPL service
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);
}