aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/process.cpp
diff options
context:
space:
mode:
authorlat9nq <lat9nq@virginia.edu>2020-10-26 21:42:11 -0400
committerlat9nq <lat9nq@virginia.edu>2020-10-26 21:42:11 -0400
commit8bd246032af3e93e05535d8cc2e4ad312a664050 (patch)
treea106597dfacba7789d091efda26bc3b2823ddb7a /src/core/hle/kernel/process.cpp
parent2f6ba544831f4978302cbd690ca36296e1342663 (diff)
kernel: Use the current time as the default RNG seed
Use the current time, not zero, as the default RNG seed.
Diffstat (limited to 'src/core/hle/kernel/process.cpp')
-rw-r--r--src/core/hle/kernel/process.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/process.cpp b/src/core/hle/kernel/process.cpp
index ff9d9248b0..4cc77c6353 100644
--- a/src/core/hle/kernel/process.cpp
+++ b/src/core/hle/kernel/process.cpp
@@ -123,7 +123,7 @@ std::shared_ptr<Process> Process::Create(Core::System& system, std::string name,
: kernel.CreateNewUserProcessID();
process->capabilities.InitializeForMetadatalessProcess();
- std::mt19937 rng(Settings::values.rng_seed.GetValue().value_or(0));
+ std::mt19937 rng(Settings::values.rng_seed.GetValue().value_or(std::time(nullptr)));
std::uniform_int_distribution<u64> distribution;
std::generate(process->random_entropy.begin(), process->random_entropy.end(),
[&] { return distribution(rng); });