m_iStagesForSong -> m_iMaxStagesForSong

This commit is contained in:
Chris Danford
2007-02-23 19:31:42 +00:00
parent 2bfc4f77e5
commit b407c58176
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ bool SongCriteria::Matches( const Song *pSong ) const
return false;
}
if( m_iStagesForSong != -1 && SONGMAN->GetNumStagesForSong(pSong) != m_iStagesForSong )
if( m_iMaxStagesForSong != -1 && GAMESTATE->GetNumStagesForSong(pSong) > m_iMaxStagesForSong )
return false;
switch( m_Tutorial )