fix constant

This commit is contained in:
Glenn Maynard
2003-05-19 21:50:56 +00:00
parent 32ca276305
commit 1e016a3c49
+1 -1
View File
@@ -625,7 +625,7 @@ void SongManager::GetSongs( vector<Song*> &AddTo, CString sGroupName, int iMaxSt
AddTo.clear();
for( unsigned i=0; i<m_pSongs.size(); i++ )
if( sGroupName=="" || sGroupName==m_pSongs[i]->m_sGroupName )
if( sGroupName==GROUP_ALL_MUSIC || sGroupName==m_pSongs[i]->m_sGroupName )
if( GetNumStagesForSong(m_pSongs[i])<=iMaxStages )
AddTo.push_back( m_pSongs[i] );
}