diff --git a/stepmania/src/MusicWheel.cpp b/stepmania/src/MusicWheel.cpp index f25aec74ee..15ee5c1c4c 100644 --- a/stepmania/src/MusicWheel.cpp +++ b/stepmania/src/MusicWheel.cpp @@ -256,18 +256,14 @@ bool MusicWheel::SelectSongOrCourse() bool MusicWheel::SelectSection( const RString & SectionName ) { - unsigned int i; - for( i=0; im_sText == SectionName ) { m_iSelection = i; // select it - break; + return true; } - } - if ( i == m_CurWheelItemData.size() ) - return false; - return true; + + return false; } bool MusicWheel::SelectSong( Song *p )