summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorTogira <70365614+Togira123@users.noreply.github.com>2024-07-03 12:58:24 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-09-16 17:23:44 +0200
commitc4351c8d98b68b9163d33208e0c0e299f0f1a5d1 (patch)
tree22dc59eea2eb0e5e3be711819c82b149cd729ab6 /core
parente2184c5da0c1a5b0da69509cc71c56b90f0dac6f (diff)
downloadredot-engine-c4351c8d98b68b9163d33208e0c0e299f0f1a5d1.tar.gz
Fix RandomPCG::rand_weighted incorrectly returning -1
(cherry picked from commit ab13513403f085ead06fa1a0ddb2b1e60fe3fe02)
Diffstat (limited to 'core')
-rw-r--r--core/math/random_pcg.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/math/random_pcg.cpp b/core/math/random_pcg.cpp
index 55787a0b57..c286a60421 100644
--- a/core/math/random_pcg.cpp
+++ b/core/math/random_pcg.cpp
@@ -60,6 +60,11 @@ int64_t RandomPCG::rand_weighted(const Vector<float> &p_weights) {
}
}
+ for (int64_t i = weights_size - 1; i >= 0; --i) {
+ if (weights[i] > 0) {
+ return i;
+ }
+ }
return -1;
}