From ec1b8430bc9160c8ef2d5dd77975478712fd91b5 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Mon, 17 May 2004 02:31:37 +0000 Subject: [PATCH] don't consider minimum percentage for Course scores --- stepmania/src/ProfileManager.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/stepmania/src/ProfileManager.cpp b/stepmania/src/ProfileManager.cpp index 167ecc1ae5..45b2ab2057 100644 --- a/stepmania/src/ProfileManager.cpp +++ b/stepmania/src/ProfileManager.cpp @@ -500,7 +500,8 @@ HighScore ProfileManager::GetHighScoreForDifficulty( const Song *s, const StyleD // void ProfileManager::AddCourseScore( const Course* pCourse, StepsType st, CourseDifficulty cd, PlayerNumber pn, HighScore hs, int &iPersonalIndexOut, int &iMachineIndexOut ) { - if( hs.fPercentDP >= PREFSMAN->m_fMinPercentageForHighScore ) + // Don't use a minimum percentage for Course scores +// if( hs.fPercentDP >= PREFSMAN->m_fMinPercentageForHighScore ) { hs.sName = RANKING_TO_FILL_IN_MARKER[pn]; if( PROFILEMAN->IsUsingProfile(pn) )