From c7d6b02a5afd31e4ad555167b64de93e73c7dfee Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Tue, 5 Apr 2005 03:25:45 +0000 Subject: [PATCH] fix warning --- stepmania/src/GameCommand.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/GameCommand.cpp b/stepmania/src/GameCommand.cpp index a56593e311..80413d73db 100644 --- a/stepmania/src/GameCommand.cpp +++ b/stepmania/src/GameCommand.cpp @@ -760,7 +760,7 @@ void GameCommand::ApplySelf( const vector &vpns ) const { // Choose a percent for all scores. This is useful for testing unlocks // where some elements are unlocked at a certain percent complete - float fPercentDP = randomf( 0.60, 1.20 ); + float fPercentDP = randomf( 0.6f, 1.2f ); Profile* pProfile = PROFILEMAN->GetMachineProfile();