From 03fab683ef7ff4c93fe4e04e76f09ed34dc3e7bd Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Wed, 6 Jul 2005 21:46:55 +0000 Subject: [PATCH] fix backwards IsFixed --- stepmania/src/Course.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) 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;