On edit menu, only move to the next screen when the Action row has focus.

This commit is contained in:
Chris Danford
2005-03-08 00:48:59 +00:00
parent 4d69144983
commit f2023c9cb7
+7 -2
View File
@@ -88,7 +88,6 @@ void ScreenEditMenu::MenuLeft( PlayerNumber pn, const InputEventType type )
if( m_Selector.CanGoLeft() )
{
m_Selector.Left();
RefreshExplanationText();
}
}
@@ -97,7 +96,6 @@ void ScreenEditMenu::MenuRight( PlayerNumber pn, const InputEventType type )
if( m_Selector.CanGoRight() )
{
m_Selector.Right();
RefreshExplanationText();
}
}
@@ -127,6 +125,13 @@ void ScreenEditMenu::MenuStart( PlayerNumber pn )
if( IsTransitioning() )
return;
if( m_Selector.CanGoDown() )
{
m_Selector.Down();
RefreshExplanationText();
return;
}
Song* pSong = m_Selector.GetSelectedSong();
StepsType st = m_Selector.GetSelectedStepsType();
Difficulty dc = m_Selector.GetSelectedDifficulty();