From 669a4c3b5b60403461b3dfe1edc69ccefb2bb212 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Sat, 12 Feb 2011 00:54:52 -0500 Subject: [PATCH] Fix comment to match variable names. WARNING! This will force recompilation of almost all of your files! --- src/RageUtil.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 );