From fa31e8d187280bbc34664cfe3d7bc518d9d57d5b Mon Sep 17 00:00:00 2001 From: Colby Klein Date: Tue, 23 Dec 2008 08:18:47 +0000 Subject: [PATCH] Broadcast more specific messages when switching songs on the MusicWheel. --- stepmania/src/ScreenSelectMusic.cpp | 6 ++++++ 1 file changed, 6 insertions(+) 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 {