fix GradePercent pref names

This commit is contained in:
Chris Danford
2004-03-13 18:35:25 +00:00
parent 731ea124a2
commit 8f10f429ea
4 changed files with 12 additions and 12 deletions
+1 -1
View File
@@ -190,7 +190,7 @@ Grade StageStats::GetGrade( PlayerNumber pn ) const
for( int g=0; g<NUM_GRADE_TIERS; g++ )
{
if( fPercent >= PREFSMAN->m_fGradePercentTier[g]-ROUNDING_ERROR )
if( fPercent >= PREFSMAN->m_fGradePercent[g]-ROUNDING_ERROR )
{
grade = (Grade)g;
break;