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
+2 -2
View File
@@ -337,7 +337,7 @@ bool SMLoader::LoadFromSMFile( CString sPath, Song &out )
{
Steps* pNewNotes = new Steps;
ASSERT( pNewNotes );
out.m_apNotes.push_back( pNewNotes );
out.m_vpSteps.push_back( pNewNotes );
if( iNumParams < 7 )
{
@@ -457,7 +457,7 @@ bool SMLoader::LoadEdit( CString sEditFilePath, ProfileSlot slot )
return false;
}
pSong->m_apNotes.push_back( pNewNotes );
pSong->m_vpSteps.push_back( pNewNotes );
return true; // Only allow one Steps per edit file!
}
else