mirror of
https://github.com/godotengine/godot.git
synced 2024-11-26 22:23:04 +00:00
Validate parameters of randi_range()
This commit is contained in:
parent
30e8b53c38
commit
d89478975f
@ -59,7 +59,10 @@ public:
|
||||
|
||||
_FORCE_INLINE_ int randi_range(int from, int to) {
|
||||
unsigned int ret = randbase.rand();
|
||||
return ret % (to - from + 1) + from;
|
||||
if (to < from)
|
||||
return ret % (from - to + 1) + to;
|
||||
else
|
||||
return ret % (to - from + 1) + from;
|
||||
}
|
||||
|
||||
RandomNumberGenerator();
|
||||
|
Loading…
Reference in New Issue
Block a user