diff --git a/stepmania/src/MusicWheel.cpp b/stepmania/src/MusicWheel.cpp index d0cd534665..121a51b62b 100644 --- a/stepmania/src/MusicWheel.cpp +++ b/stepmania/src/MusicWheel.cpp @@ -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 &wiWheelItems = m_WheelItemDatas[GAMESTATE->m_SortOrder];