more! more!

This commit is contained in:
Glenn Maynard
2002-09-06 21:34:17 +00:00
parent 3d6cf803da
commit 9823bd8ac7
+3 -1
View File
@@ -1249,7 +1249,9 @@ bool Song::SongCompleteForStyle( const StyleDef *st ) const
for( int pn = 0; pn < NUM_PLAYERS; ++pn ) for( int pn = 0; pn < NUM_PLAYERS; ++pn )
{ {
if(st->m_NotesTypes[pn] == NOTES_TYPE_INVALID) continue; /* unused */ if(st->m_NotesTypes[pn] == NOTES_TYPE_INVALID) continue; /* unused */
if(!SongHasNotesType(st->m_NotesTypes[pn])) return false; if(!SongHasNotesType(st->m_NotesTypes[pn]) &&
!SongHasNotesType(st->m_FallbackNotesType))
return false;
} }
return true; return true;
} }