Broadcast more specific messages when switching songs on the MusicWheel.
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user