summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/math/random_pcg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/math/random_pcg.h b/core/math/random_pcg.h
index 7ec8b47f90..ef69bf7120 100644
--- a/core/math/random_pcg.h
+++ b/core/math/random_pcg.h
@@ -50,8 +50,8 @@ public:
void randomize();
_FORCE_INLINE_ uint32_t rand() { return pcg32_random_r(&pcg); }
- _FORCE_INLINE_ double randf() { return (double)rand() / (double)RANDOM_MAX; }
- _FORCE_INLINE_ float randd() { return (float)rand() / (float)RANDOM_MAX; }
+ _FORCE_INLINE_ double randd() { return (double)rand() / (double)RANDOM_MAX; }
+ _FORCE_INLINE_ float randf() { return (float)rand() / (float)RANDOM_MAX; }
double random(double from, double to);
float random(float from, float to);