only show tutorial in EDIT_MODE_FULL

This commit is contained in:
Chris Danford
2005-04-19 01:50:40 +00:00
parent 6053783a4c
commit fafac28e85
+1 -1
View File
@@ -65,7 +65,7 @@ static void GetSongsToShowForGroup( const CString &sGroup, vector<Song*> &vpSong
for( int i=vpSongsOut.size()-1; i>=0; i-- )
{
const Song* pSong = vpSongsOut[i];
if( UNLOCKMAN->SongIsLocked(pSong) )
if( UNLOCKMAN->SongIsLocked(pSong) || pSong->IsTutorial() )
vpSongsOut.erase( vpSongsOut.begin()+i );
}
break;