diff --git a/stepmania/src/Course.cpp b/stepmania/src/Course.cpp index 7148338ddd..6ed108f84e 100644 --- a/stepmania/src/Course.cpp +++ b/stepmania/src/Course.cpp @@ -1205,10 +1205,8 @@ bool Course::IsFixed() const { for(unsigned i = 0; i < m_vEntries.size(); i++) { - if ( m_vEntries[i].pSong == NULL ) - continue; - - return false; + if( m_vEntries[i].pSong == NULL ) + return false; } return true;