浏览代码

Update rcore.c

Ray 1 年之前
父节点
当前提交
32e4be6fb9
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/rcore.c

+ 1 - 1
src/rcore.c

@@ -1712,7 +1712,7 @@ int *LoadRandomSequence(unsigned int count, int min, int max)
     int *values = NULL;
     int *values = NULL;
     
     
 #if defined(SUPPORT_RPRAND_GENERATOR)
 #if defined(SUPPORT_RPRAND_GENERATOR)
-    rprand_load_sequence(count, min, max);
+    values = rprand_load_sequence(count, min, max);
 #else
 #else
     if (count > (abs(max - min) + 1)) return values;
     if (count > (abs(max - min) + 1)) return values;