Skip to content

Commit

Permalink
Update rcore.c
Browse files Browse the repository at this point in the history
  • Loading branch information
raysan5 committed Nov 3, 2023
1 parent 2d1b211 commit 32e4be6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rcore.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 32e4be6

Please sign in to comment.