summaryrefslogtreecommitdiff
path: root/src/JSystem/JMath/random.cpp
diff options
context:
space:
mode:
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);
}