diff options
| author | Ray <[email protected]> | 2023-11-03 22:23:50 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2023-11-03 22:23:50 +0100 |
| commit | 32e4be6fb9ec23b325d64b651a945a234351bb8f (patch) | |
| tree | b4543459ba7280dcdb7a8aa476a419bb37d8a824 /src/rcore.c | |
| parent | 2d1b2119202d08245ca4d313b846a6d0a8b2139b (diff) | |
| download | raylib-32e4be6fb9ec23b325d64b651a945a234351bb8f.tar.gz raylib-32e4be6fb9ec23b325d64b651a945a234351bb8f.zip | |
Update rcore.c
Diffstat (limited to 'src/rcore.c')
| -rw-r--r-- | src/rcore.c | 2 |
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; |
