name cleanup

This commit is contained in:
Chris Danford
2004-06-02 05:52:16 +00:00
parent 6c692d953d
commit 0a5d0fb73f
4 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -960,17 +960,17 @@ Steps* Song::GetClosestNotes( StepsType st, Difficulty dc ) const
/* Return whether the song is playable in the given style. */
bool Song::SongCompleteForStyle( const StyleDef *st ) const
{
return SongHasNotesType( st->m_StepsType );
return HasStepsType( st->m_StepsType );
}
bool Song::SongHasNotesType( StepsType st ) const
bool Song::HasStepsType( StepsType st ) const
{
vector<Steps*> add;
GetSteps( add, st, DIFFICULTY_INVALID, -1, -1, "", true, 1 );
return !add.empty();
}
bool Song::SongHasNotesTypeAndDifficulty( StepsType st, Difficulty dc ) const
bool Song::HasStepsTypeAndDifficulty( StepsType st, Difficulty dc ) const
{
vector<Steps*> add;
GetSteps( add, st, dc, -1, -1, "", true, 1 );