diff options
author | bunnei <bunneidev@gmail.com> | 2018-11-16 05:18:47 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-16 05:18:47 +0100 |
commit | 75640c9c715c943dc052b0c09d8b312f87319eb5 (patch) | |
tree | 6011a4915f2dbd6811f41c4755c49807b5a50fe6 /src/core | |
parent | Merge pull request #1687 from lioncash/deduplication (diff) | |
parent | csrng: Use random integer distribution instead of raw engine (diff) | |
download | yuzu-75640c9c715c943dc052b0c09d8b312f87319eb5.tar yuzu-75640c9c715c943dc052b0c09d8b312f87319eb5.tar.gz yuzu-75640c9c715c943dc052b0c09d8b312f87319eb5.tar.bz2 yuzu-75640c9c715c943dc052b0c09d8b312f87319eb5.tar.lz yuzu-75640c9c715c943dc052b0c09d8b312f87319eb5.tar.xz yuzu-75640c9c715c943dc052b0c09d8b312f87319eb5.tar.zst yuzu-75640c9c715c943dc052b0c09d8b312f87319eb5.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/hle/service/spl/module.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/spl/module.cpp b/src/core/hle/service/spl/module.cpp index 69c260408..b2de2a818 100644 --- a/src/core/hle/service/spl/module.cpp +++ b/src/core/hle/service/spl/module.cpp @@ -28,8 +28,9 @@ void Module::Interface::GetRandomBytes(Kernel::HLERequestContext& ctx) { std::size_t size = ctx.GetWriteBufferSize(); + std::uniform_int_distribution<u16> distribution(0, std::numeric_limits<u8>::max()); std::vector<u8> data(size); - std::generate(data.begin(), data.end(), rng); + std::generate(data.begin(), data.end(), [&] { return static_cast<u8>(distribution(rng)); }); ctx.WriteBuffer(data); |