summaryrefslogtreecommitdiff
path: root/src/JSystem/JMath/random.cpp
diff options
context:
space:
mode:
authorJcw87 <Jcw87@users.noreply.github.com>2026-01-07 09:53:53 -0800
committerGitHub <noreply@github.com>2026-01-07 19:53:53 +0200
commit2b52bc59d00bc83abce50c026447780d6c8ad943 (patch)
treec4689d5bef172f049c78f11b031eefd0f6d50049 /src/JSystem/JMath/random.cpp
parenta313c26f0bc6d11bddc2b24c4367dc1040f604a4 (diff)
JMath debug (#3023)
Diffstat (limited to 'src/JSystem/JMath/random.cpp')
-rw-r--r--src/JSystem/JMath/random.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/JSystem/JMath/random.cpp b/src/JSystem/JMath/random.cpp
index add311c729..389d614d0c 100644
--- a/src/JSystem/JMath/random.cpp
+++ b/src/JSystem/JMath/random.cpp
@@ -2,6 +2,6 @@
#include "JSystem/JMath/random.h"
-JMath::TRandom_fast_::TRandom_fast_(u32 param_0) {
- value = param_0;
+JMath::TRandom_fast_::TRandom_fast_(u32 seed) {
+ setSeed(seed);
}