From f33f42e8c6ad44e5711a9a898cdf1d0b30700ebe Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 20 Apr 2003 22:57:35 +0000 Subject: [PATCH] disable note type check; it's problematic --- stepmania/src/SongManager.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/stepmania/src/SongManager.cpp b/stepmania/src/SongManager.cpp index 6cb0a1e982..c0bc7a3fac 100644 --- a/stepmania/src/SongManager.cpp +++ b/stepmania/src/SongManager.cpp @@ -588,14 +588,17 @@ RageColor SongManager::GetSongColor( const Song* pSong ) * That's not too bad, I think. This will also change it in the song scroll, * which is a little odd but harmless. * + * XXX: Ack. This means this function can only be called when we have a style + * set up, which is too restrictive. How to handle this? + * * XXX: Once we support edits, ignore them, too. */ - const NotesType nt = GAMESTATE->GetCurrentStyleDef()->m_NotesType; +// const NotesType nt = GAMESTATE->GetCurrentStyleDef()->m_NotesType; for( unsigned i=0; im_apNotes.size(); i++ ) { const Notes* pNotes = pSong->m_apNotes[i]; - if(pNotes->m_NotesType != nt) - continue; +// if(pNotes->m_NotesType != nt) +// continue; if( pNotes->GetMeter() >= 10 ) return EXTRA_COLOR;