summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--src/rcore.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rcore.c b/src/rcore.c
index b09dffe6..9a9ac3f4 100644
--- a/src/rcore.c
+++ b/src/rcore.c
@@ -1712,7 +1712,7 @@ int *LoadRandomSequence(unsigned int count, int min, int max)
int *values = NULL;
#if defined(SUPPORT_RPRAND_GENERATOR)
- rprand_load_sequence(count, min, max);
+ values = rprand_load_sequence(count, min, max);
#else
if (count > (abs(max - min) + 1)) return values;