diff options
| author | bunnei <bunneidev@gmail.com> | 2021-06-22 15:43:10 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-06-22 15:43:10 -0700 |
| commit | 255f8d22d7cbb85b6d7742d46a1a6c55262ad4e1 (patch) | |
| tree | 514169d4f91fd13b11f8f0f452ec56dffba45cc4 /src/core/hle/service/spl/csrng.cpp | |
| parent | 791d3d1beaf6658a56fea52fe8935c451df180b6 (diff) | |
| parent | 4a4e30431995cd37684f1d254c1bb83180c01112 (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.cpp | 2 |
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); } |
