浏览代码

Change implicit conversion to explicit conversion to remove warning (#4308)

pull/4309/head
masnm 3 个月前
committed by GitHub
父节点
当前提交
10b01ba7c2
找不到此签名对应的密钥 GPG 密钥 ID: B5690EEEBB952194
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/external/par_shapes.h

+ 1
- 1
src/external/par_shapes.h 查看文件

@ -1130,7 +1130,7 @@ static par_shapes__rule* par_shapes__pick_rule(const char* name,
total += rule->weight;
}
}
float r = (float) rand() / RAND_MAX;
float r = (float) rand() / p">(float) RAND_MAX;
float t = 0;
for (int i = 0; i < nrules; i++) {
rule = rules + i;

正在加载...
取消
保存