diff --git a/src/RageUtil.h b/src/RageUtil.h index f5eb111326..28b405cf5c 100644 --- a/src/RageUtil.h +++ b/src/RageUtil.h @@ -266,7 +266,7 @@ inline float RandomFloat() } -// Returns a float between dLow and dHigh inclusive +// Returns a float between fLow and fHigh inclusive inline float RandomFloat( float fLow, float fHigh ) { return SCALE( RandomFloat(), 0.0f, 1.0f, fLow, fHigh );