Browse Source

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

masnm 1 năm trước cách đây
mục cha
commit
10b01ba7c2
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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() / (float) RAND_MAX;
     float t = 0;
     for (int i = 0; i < nrules; i++) {
         rule = rules + i;