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
+4 -4
View File
@@ -98,16 +98,16 @@ void DifficultyMeter::Load()
Unset();
}
void DifficultyMeter::SetFromNotes( const Steps* pNotes )
void DifficultyMeter::SetFromNotes( const Steps* pSteps )
{
if( pNotes == NULL )
if( pSteps == NULL )
{
Unset();
return;
}
SetMeter( pNotes->GetMeter(), pNotes->GetDifficulty() );
SetDifficulty( DifficultyToString( pNotes->GetDifficulty() ) );
SetMeter( pSteps->GetMeter(), pSteps->GetDifficulty() );
SetDifficulty( DifficultyToString( pSteps->GetDifficulty() ) );
}
void DifficultyMeter::SetFromCourse( const Course* pCourse, PlayerNumber pn )