Rename overloaded methods of Song so that stack traces are more helpful.

This commit is contained in:
Chris Danford
2003-08-10 08:58:11 +00:00
parent 53cbf16bfe
commit 1e514c1c51
12 changed files with 54 additions and 52 deletions
+3 -3
View File
@@ -305,9 +305,9 @@ void SongManager::ReadNoteScoresFromFile( CString fn, int c )
if( pSong )
{
if( dc==DIFFICULTY_INVALID )
pNotes = pSong->GetNotes( nt, sDescription );
pNotes = pSong->GetStepsByDescription( nt, sDescription );
else
pNotes = pSong->GetNotes( nt, dc );
pNotes = pSong->GetStepsByDifficulty( nt, dc );
}
getline(f, line);
@@ -985,7 +985,7 @@ void SongManager::GetExtraStageInfo( bool bExtra2, const StyleDef *sd,
Song* pSong = apSongs[s];
vector<Steps*> apNotes;
pSong->GetNotes( apNotes, sd->m_StepsType );
pSong->GetSteps( apNotes, sd->m_StepsType );
for( unsigned n=0; n<apNotes.size(); n++ ) // foreach Steps
{
Steps* pNotes = apNotes[n];