Update lmms_math.h

oops, extra f
This commit is contained in:
Vesa V
2014-12-07 00:12:19 +02:00
parent f742854642
commit 68f5ccce64

View File

@@ -132,7 +132,7 @@ static inline int fast_rand()
static inline double fastRand( double range )
{
static const double fast_rand_ratio = 1.0f / FAST_RAND_MAX;
static const double fast_rand_ratio = 1.0 / FAST_RAND_MAX;
return fast_rand() * range * fast_rand_ratio;
}