summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorlat9nq <lat9nq@gmail.com>2022-04-05 06:37:46 +0200
committerlat9nq <lat9nq@gmail.com>2022-04-06 01:55:56 +0200
commitb976cac49dd7bbfc461802d64d467f9c5b73ce3b (patch)
treec09a194cadf961f124e064725014538f0eafe8b1 /src
parentk_auto_object: Fix data race (diff)
downloadyuzu-b976cac49dd7bbfc461802d64d467f9c5b73ce3b.tar
yuzu-b976cac49dd7bbfc461802d64d467f9c5b73ce3b.tar.gz
yuzu-b976cac49dd7bbfc461802d64d467f9c5b73ce3b.tar.bz2
yuzu-b976cac49dd7bbfc461802d64d467f9c5b73ce3b.tar.lz
yuzu-b976cac49dd7bbfc461802d64d467f9c5b73ce3b.tar.xz
yuzu-b976cac49dd7bbfc461802d64d467f9c5b73ce3b.tar.zst
yuzu-b976cac49dd7bbfc461802d64d467f9c5b73ce3b.zip
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/kernel/board/nintendo/nx/k_system_control.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/kernel/board/nintendo/nx/k_system_control.cpp b/src/core/hle/kernel/board/nintendo/nx/k_system_control.cpp
index 8027bec00..7765e7848 100644
--- a/src/core/hle/kernel/board/nintendo/nx/k_system_control.cpp
+++ b/src/core/hle/kernel/board/nintendo/nx/k_system_control.cpp
@@ -148,9 +148,9 @@ u64 GenerateUniformRange(u64 min, u64 max, F f) {
} // Anonymous namespace
u64 KSystemControl::GenerateRandomU64() {
- static std::random_device device;
- static std::mt19937 gen(device());
- static std::uniform_int_distribution<u64> distribution(1, std::numeric_limits<u64>::max());
+ std::random_device device;
+ std::mt19937 gen(device());
+ std::uniform_int_distribution<u64> distribution(1, std::numeric_limits<u64>::max());
return distribution(gen);
}