unneeded now

This commit is contained in:
Glenn Maynard
2004-11-08 07:14:47 +00:00
parent 348c1a696e
commit 1b7fbd69d6
+2 -2
View File
@@ -602,14 +602,14 @@ int PlayerMinus::GetClosestNoteDirectional( int col, int iStartRow, int iMaxRows
while( abs(iStartRow-iRow) <= iMaxRowsAhead )
{
/* Is iRow the row we want? */
for(;;)
do
{
if( m_NoteData.GetTapNote(col, iRow).type == TapNote::empty )
break;
if( !bAllowGraded && m_NoteData.GetTapNoteScore(col, iRow) != TNS_NONE )
break;
return iRow;
}
} while(0);
if( bForward && !m_NoteData.GetNextTapNoteRowForTrack( col, iRow ) )
return -1;