cleanup: "(PlayerNumber)" -> ""

This commit is contained in:
Chris Danford
2005-01-31 03:18:46 +00:00
parent 3674f5a507
commit a24bd3014c
18 changed files with 46 additions and 54 deletions
+2 -2
View File
@@ -195,12 +195,12 @@ void MusicWheelItem::RefreshGrades()
else
dc = GAMESTATE->m_PreferredDifficulty[p];
Grade grade;
if( PROFILEMAN->IsUsingProfile((PlayerNumber)p) )
if( PROFILEMAN->IsUsingProfile(p) )
grade = PROFILEMAN->GetHighScoreForDifficulty( data->m_pSong, GAMESTATE->GetCurrentStyle(), (ProfileSlot)p, dc ).grade;
else
grade = PROFILEMAN->GetHighScoreForDifficulty( data->m_pSong, GAMESTATE->GetCurrentStyle(), PROFILE_SLOT_MACHINE, dc ).grade;
m_GradeDisplay[p].SetGrade( (PlayerNumber)p, grade );
m_GradeDisplay[p].SetGrade( p, grade );
}
}