use Get/SetTapNote

This commit is contained in:
Glenn Maynard
2002-10-25 04:37:00 +00:00
parent b766b6c7b9
commit dbb06ce6ac
4 changed files with 24 additions and 24 deletions
+1 -1
View File
@@ -38,7 +38,7 @@ struct NoteDataWithScoring : public NoteData
inline bool IsRowComplete( int index )
{
for( int t=0; t<m_iNumTracks; t++ )
if( m_TapNotes[t][index] != '0' && m_TapNoteScores[t][index] < TNS_GREAT )
if( GetTapNote(t, index) != TAP_EMPTY && m_TapNoteScores[t][index] < TNS_GREAT )
return false;
return true;
}