From 9823bd8ac764dcf8eee7fb9cdc1ad5c2279cde84 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Fri, 6 Sep 2002 21:34:17 +0000 Subject: [PATCH] more! more! --- stepmania/src/Song.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/stepmania/src/Song.cpp b/stepmania/src/Song.cpp index 8fb1b81bd2..e6364a1c97 100644 --- a/stepmania/src/Song.cpp +++ b/stepmania/src/Song.cpp @@ -1249,7 +1249,9 @@ bool Song::SongCompleteForStyle( const StyleDef *st ) const for( int pn = 0; pn < NUM_PLAYERS; ++pn ) { 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; }