diff --git a/stepmania/src/ScreenSelectMusic.cpp b/stepmania/src/ScreenSelectMusic.cpp index c388296189..f9997898f2 100644 --- a/stepmania/src/ScreenSelectMusic.cpp +++ b/stepmania/src/ScreenSelectMusic.cpp @@ -539,12 +539,18 @@ void ScreenSelectMusic::Input( const InputEventPlus &input ) else if( bLeftIsDown ) { if( input.type != IET_RELEASE ) + { + MESSAGEMAN->Broadcast( "PreviousSong" ); m_MusicWheel.Move( -1 ); + } } else if( bRightIsDown ) { if( input.type != IET_RELEASE ) + { + MESSAGEMAN->Broadcast( "NextSong" ); m_MusicWheel.Move( +1 ); + } } else {