don't trap all buttons (like MenuBack) while in the options list

This commit is contained in:
Chris Danford
2007-03-06 18:57:24 +00:00
parent 96fac5a091
commit 3bf0f5f986
+5 -5
View File
@@ -337,7 +337,7 @@ void ScreenSelectMusic::Input( const InputEventPlus &input )
MESSAGEMAN->Broadcast( msg );
m_OptionsList[pn].Close();
}
break;
return;
case GAME_BUTTON_START:
if( m_OptionsList[pn].Start() )
{
@@ -346,13 +346,13 @@ void ScreenSelectMusic::Input( const InputEventPlus &input )
MESSAGEMAN->Broadcast( msg );
m_OptionsList[pn].Close();
}
break;
default:
return;
case GAME_BUTTON_MENULEFT:
case GAME_BUTTON_MENURIGHT:
m_OptionsList[pn].Input( input );
break;
return;
}
}
return;
}
else
{