allow choosing a song on this screen, but press Start on the entry for advanced options

This commit is contained in:
Chris Danford
2005-08-15 16:02:14 +00:00
parent 3c72edb0d4
commit 4f0bc4d43f
2 changed files with 5 additions and 1 deletions
+3 -1
View File
@@ -56,6 +56,7 @@ void ScreenOptionsEditCourse::BeginScreen()
ASSERT( GAMESTATE->m_pCurCourse );
Course *pCourse = GAMESTATE->m_pCurCourse;
m_Original = *pCourse;
SONGMAN->GetSongs( m_vpDisplayedSongs );
vector<OptionRowDefinition> vDefs;
@@ -86,7 +87,8 @@ void ScreenOptionsEditCourse::BeginScreen()
int iEntryIndex = ce - pCourse->m_vEntries.begin();
def.m_sName = ssprintf( "Entry %d", iEntryIndex+1 );
def.m_vsChoices.clear();
def.m_vsChoices.push_back( ce->GetTextDescription() );
FOREACH_CONST( Song*, m_vpDisplayedSongs, s )
def.m_vsChoices.push_back( (*s)->GetTranslitFullTitle() );
vDefs.push_back( def );
vHands.push_back( NULL );
}