don't count hold tails in hands count

This commit is contained in:
Glenn Maynard
2004-02-13 20:26:26 +00:00
parent 4bbb6ae411
commit 84582c6c10
+1 -1
View File
@@ -499,7 +499,7 @@ int NoteData::RowNeedsHands( const int row ) const
for( int t=0; t<m_iNumTracks; t++ )
{
TapNote tn = GetTapNoteX(t, row);
if( tn == TAP_MINE || tn == TAP_EMPTY ) // mines don't count
if( tn == TAP_MINE || tn == TAP_EMPTY || tn == TAP_HOLD_TAIL ) // mines don't count
continue;
++iNumNotesThisIndex;
}