Fix comment to match variable names.

WARNING!
This will force recompilation of almost
all of your files!
This commit is contained in:
Jason Felds
2011-02-12 00:54:52 -05:00
parent 3b7e29ba92
commit 669a4c3b5b
+1 -1
View File
@@ -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 );