mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-05-26 10:57:09 +02:00
fix mt
This commit is contained in:
parent
04ae499870
commit
6ae32a1e26
1 changed files with 1 additions and 1 deletions
|
|
@ -203,7 +203,7 @@ u64 GenerateUniformRange(u64 min, u64 max, F f) {
|
||||||
} // Anonymous namespace
|
} // Anonymous namespace
|
||||||
|
|
||||||
u64 KSystemControl::GenerateRandomRange(u64 min, u64 max) {
|
u64 KSystemControl::GenerateRandomRange(u64 min, u64 max) {
|
||||||
return GenerateUniformRange(min, max, Common::Random::GenerateRandomU64(0));
|
return GenerateUniformRange(min, max, Common::Random::GetMT19937());
|
||||||
}
|
}
|
||||||
|
|
||||||
size_t KSystemControl::CalculateRequiredSecureMemorySize(size_t size, u32 pool) {
|
size_t KSystemControl::CalculateRequiredSecureMemorySize(size_t size, u32 pool) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue