Skip to content

Commit

Permalink
Update rprand.h
Browse files Browse the repository at this point in the history
  • Loading branch information
raysan5 committed May 1, 2024
1 parent 763129e commit c21edad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/external/rprand.h
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ int *rprand_load_sequence(unsigned int count, int min, int max)
{
value = ((unsigned int)rprand_xoshiro()%(abs(max - min) + 1)) + min;

for (int j = 0; j < i; j++)
for (unsigned int j = 0; j < i; j++)
{
if (sequence[j] == value)
{
Expand Down

0 comments on commit c21edad

Please sign in to comment.