GetHighScoreForDifficulty -> GetHighGradeForDifficulty.

This commit is contained in:
Steve Checkoway
2007-02-25 07:02:27 +00:00
parent bf77a61057
commit 2afb681aea
3 changed files with 7 additions and 8 deletions
+2 -3
View File
@@ -307,9 +307,8 @@ void MusicWheelItem::RefreshGrades()
if( PROFILEMAN->IsPersistentProfile(p) )
ps = (ProfileSlot)p;
HighScore hs;
PROFILEMAN->GetHighScoreForDifficulty( data->m_pSong, GAMESTATE->GetCurrentStyle(), ps, dc, hs );
m_pGradeDisplay[p]->SetGrade( p, hs.GetGrade() );
Grade g = PROFILEMAN->GetHighGradeForDifficulty( data->m_pSong, GAMESTATE->GetCurrentStyle(), ps, dc );
m_pGradeDisplay[p]->SetGrade( p, g );
}
}