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; }