1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

pm_randon.h: fix conversion warning (int to float)

This commit is contained in:
Jon Trulson 2021-05-31 13:10:33 -06:00
parent e8345c9241
commit 9f5021a81f

View file

@ -72,7 +72,7 @@ public:
v_new_seed = ( test > 0 ) ? test : test + 2147483647;
return tmp;
};
float rand_01() { return float(rand()) / 2147483647; };
float rand_01() { return float(rand()) / 2147483647.0; };
private: