fix preferred sort

This commit is contained in:
Glenn Maynard
2007-08-27 09:32:45 +00:00
parent 5faeba6cc6
commit 4acaeab1b9
+1 -1
View File
@@ -1363,7 +1363,7 @@ void SongManager::UpdatePreferredSort()
Song *pSong = NULL;
if( !sLine.empty() )
pSong = FindSong( sLine );
if( pSong && UNLOCKMAN->SongIsLocked(pSong) & LOCKED_SELECTABLE )
if( pSong && !(UNLOCKMAN->SongIsLocked(pSong) & LOCKED_SELECTABLE) )
vpSongs.push_back( pSong );
}
}