fix "holding left and pressing right ignores wheel lock"

This commit is contained in:
Glenn Maynard
2005-09-19 09:01:21 +00:00
parent 5f9c33fd01
commit 142fc408ab
3 changed files with 19 additions and 2 deletions
+2 -2
View File
@@ -809,10 +809,10 @@ void ScreenSelectMusic::Input( const InputEventPlus &input )
switch( input.MenuI.button )
{
case MENU_BUTTON_LEFT:
m_MusicWheel.ChangeMusic( -1 );
m_MusicWheel.ChangeMusicUnlessLocked( -1 );
break;
case MENU_BUTTON_RIGHT:
m_MusicWheel.ChangeMusic( +1 );
m_MusicWheel.ChangeMusicUnlessLocked( +1 );
break;
}
}