You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-14 13:41:12 +00:00
Fix RANDOM_MAX, which is 2^32-1 with PCG32.
This commit is contained in:
@@ -50,7 +50,7 @@ public:
|
||||
Math() {} // useless to instance
|
||||
|
||||
enum {
|
||||
RANDOM_MAX=2147483647L
|
||||
RANDOM_MAX=4294967295L
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user