fix "Profile's LastSong isn't initially selected"

This commit is contained in:
Chris Danford
2004-05-27 07:59:04 +00:00
parent 4ac0eb38ae
commit 398865a5ec
+4
View File
@@ -247,8 +247,12 @@ bool MusicWheel::SelectSongOrCourse()
{
if( GAMESTATE->m_pCurSong && SelectSong( GAMESTATE->m_pCurSong ) )
return true;
if( GAMESTATE->m_pPreferredSong && SelectSong( GAMESTATE->m_pPreferredSong ) )
return true;
if( GAMESTATE->m_pCurCourse && SelectCourse( GAMESTATE->m_pCurCourse ) )
return true;
if( GAMESTATE->m_pPreferredCourse && SelectCourse( GAMESTATE->m_pPreferredCourse ) )
return true;
// Select the first selectable song based on the sort order...
vector<WheelItemData> &wiWheelItems = m_WheelItemDatas[GAMESTATE->m_SortOrder];