fix bool != enum

This commit is contained in:
Glenn Maynard
2007-05-07 19:49:35 +00:00
parent 0b9d338daa
commit 081018eedf
+1 -1
View File
@@ -1252,7 +1252,7 @@ void SongManager::UpdatePopular()
{
bool bFiltered = false;
/* Filter out hidden songs. */
if( apBestSongs[j]->GetDisplayed() != Song::SHOW_ALWAYS )
if( apBestSongs[j]->GetDisplayed() )
bFiltered = true;
/* Filter out locked songs. */
// XXX Hack, this depends on UNLOCKMAN being around.