merge UnlockManager::SongIsRouletteOnly into SongIsLocked

This commit is contained in:
Glenn Maynard
2007-08-16 01:24:55 +00:00
parent 1ab347b022
commit 03b7983216
3 changed files with 10 additions and 21 deletions
+1 -1
View File
@@ -353,7 +353,7 @@ void MusicWheel::GetSongList( vector<Song*> &arraySongs, SortOrder so, const RSt
/* Hide songs that asked to be hidden via #SELECTABLE. */
if( iLocked & LOCKED_SELECTABLE )
continue;
if( so!=SORT_ROULETTE && UNLOCKMAN->SongIsRouletteOnly( pSong ) )
if( so != SORT_ROULETTE && iLocked & LOCKED_ROULETTE )
continue;
}