more const fixes

This commit is contained in:
Glenn Maynard
2003-10-04 04:55:59 +00:00
parent a7d4a72094
commit e486991c81
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -56,7 +56,7 @@ Steps::~Steps()
delete notes_comp;
}
void Steps::SetNoteData( NoteData* pNewNoteData )
void Steps::SetNoteData( const NoteData* pNewNoteData )
{
ASSERT( pNewNoteData->GetNumTracks() == GameManager::NotesTypeToNumTracks(m_StepsType) );
+1 -1
View File
@@ -48,7 +48,7 @@ public:
StepsType m_StepsType;
void GetNoteData( NoteData* pNoteDataOut ) const;
void SetNoteData( NoteData* pNewNoteData );
void SetNoteData( const NoteData* pNewNoteData );
void SetSMNoteData( const CString &out );
CString GetSMNoteData() const;