name cleanup: "pNotes" -> "pSteps"

This commit is contained in:
Chris Danford
2004-05-24 03:41:39 +00:00
parent 99a02deffe
commit 4bb777232d
53 changed files with 359 additions and 359 deletions
+3 -3
View File
@@ -49,12 +49,12 @@ bool DifficultyIcon::Load( CString sPath )
return true;
}
void DifficultyIcon::SetFromNotes( PlayerNumber pn, Steps* pNotes )
void DifficultyIcon::SetFromNotes( PlayerNumber pn, Steps* pSteps )
{
if( pNotes == NULL )
if( pSteps == NULL )
m_bBlank = true;
else
SetFromDifficulty( pn, pNotes->GetDifficulty() );
SetFromDifficulty( pn, pSteps->GetDifficulty() );
}
void DifficultyIcon::SetFromDifficulty( PlayerNumber pn, Difficulty dc )