summaryrefslogtreecommitdiff
path: root/core/math
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <remi@verschelde.fr>2022-10-13 21:17:09 +0200
committerGitHub <noreply@github.com>2022-10-13 21:17:09 +0200
commit926429392a73a0c2261bc4ed4503c99025842d7c (patch)
tree0af88b47148b9fd2e7c743061e5c4c2b873b0a1b /core/math
parent46a1b92bb7756ff3934c643ecf49d86982ff754d (diff)
parenta871114339a42ce62c8a126b847cd3adcb9603ba (diff)
Merge pull request #67057 from Anutrix/rng-generator-default-seed
Diffstat (limited to 'core/math')
-rw-r--r--core/math/random_number_generator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/math/random_number_generator.h b/core/math/random_number_generator.h
index 9352bae0a6..bf67154cd6 100644
--- a/core/math/random_number_generator.h
+++ b/core/math/random_number_generator.h
@@ -57,7 +57,7 @@ public:
_FORCE_INLINE_ real_t randfn(real_t p_mean = 0.0, real_t p_deviation = 1.0) { return randbase.randfn(p_mean, p_deviation); }
_FORCE_INLINE_ int randi_range(int p_from, int p_to) { return randbase.random(p_from, p_to); }
- RandomNumberGenerator() {}
+ RandomNumberGenerator() { randbase.randomize(); }
};
#endif // RANDOM_NUMBER_GENERATOR_H