summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorCalamander <Calamander@yandex.ru>2019-01-07 23:13:16 +0100
committerGitHub <noreply@github.com>2019-01-07 23:13:16 +0100
commit64e584a97e0505cec592d3c98a2899ba8426f35a (patch)
treeeef5b6e0de98b0d9efdde979a6fa405c4be969b7 /core
parente4b02513fe4e352c4ba74fc28b306e83b7014083 (diff)
downloadredot-engine-64e584a97e0505cec592d3c98a2899ba8426f35a.tar.gz
Update random_pcg.h
little fix to function types
Diffstat (limited to 'core')
-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 91340a568e..d594d16b98 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);