summaryrefslogtreecommitdiff
path: root/src/sys/sys_math.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sys/sys_math.c')
-rw-r--r--src/sys/sys_math.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/sys/sys_math.c b/src/sys/sys_math.c
index 5171644f..a4ff84d9 100644
--- a/src/sys/sys_math.c
+++ b/src/sys/sys_math.c
@@ -19,9 +19,6 @@ void Rand_Init(void) {
}
f32 Rand_ZeroOne(void) {
- if (sRandSeed1 == sRandSeed2 == sRandSeed3 == 0){
- Rand_Init();
- }
sRandSeed1 = (sRandSeed1 * 171) % 30269;
sRandSeed2 = (sRandSeed2 * 172) % 30307;
sRandSeed3 = (sRandSeed3 * 170) % 30323;