From 0a8e861b6d32f10e2baece7930da9cd72b21c445 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Sun, 29 Feb 2004 18:18:28 +0000 Subject: [PATCH] fix interaction between scroll mods --- stepmania/src/PlayerOptions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/PlayerOptions.cpp b/stepmania/src/PlayerOptions.cpp index 10ef1d6a5e..0b97f6d936 100644 --- a/stepmania/src/PlayerOptions.cpp +++ b/stepmania/src/PlayerOptions.cpp @@ -481,7 +481,7 @@ float PlayerOptions::GetReversePercentForColumn( int iCol ) if( f > 2 ) f = fmodf( f, 2 ); if( f > 1 ) - f -= 1; + f = SCALE( f, 1.f, 2.f, 1.f, 0.f ); return f; }