From dfa0f52ec08693144d3401d18130e8bf4b8e31a6 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sat, 28 May 2005 08:52:57 +0000 Subject: [PATCH] fix incorrect assert --- stepmania/src/Profile.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/Profile.cpp b/stepmania/src/Profile.cpp index 0acb37e605..90dd8e7e57 100644 --- a/stepmania/src/Profile.cpp +++ b/stepmania/src/Profile.cpp @@ -1246,7 +1246,7 @@ XNode* Profile::SaveSongScoresCreateNode() const j++ ) { jCheck1++; - ASSERT(jCheck1 < jCheck2); + ASSERT( jCheck1 <= jCheck2 ); const StepsID &stepsID = j->first; const HighScoresForASteps &hsSteps = j->second;