diff options
author | Calamander <Calamander@yandex.ru> | 2019-01-07 23:13:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-07 23:13:16 +0100 |
commit | 64e584a97e0505cec592d3c98a2899ba8426f35a (patch) | |
tree | eef5b6e0de98b0d9efdde979a6fa405c4be969b7 | |
parent | e4b02513fe4e352c4ba74fc28b306e83b7014083 (diff) | |
download | redot-engine-64e584a97e0505cec592d3c98a2899ba8426f35a.tar.gz |
Update random_pcg.h
little fix to function types
-rw-r--r-- | core/math/random_pcg.h | 4 |
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); |