diff --git a/stepmania/src/ScreenSelectMusic.cpp b/stepmania/src/ScreenSelectMusic.cpp index 3bd2f320e6..b3a4b3b33f 100644 --- a/stepmania/src/ScreenSelectMusic.cpp +++ b/stepmania/src/ScreenSelectMusic.cpp @@ -791,7 +791,11 @@ void ScreenSelectMusic::Input( const InputEventPlus &input ) bool bNeitherDown = !bLeftIsDown && !bRightIsDown; - if( bBothDown || bNeitherDown ) + if( bNeitherDown ) + { + m_MusicWheel.Move( 0 ); + } + else if( bBothDown ) { m_MusicWheel.Move( 0 ); if( input.type == IET_FIRST_PRESS )