Enums for TapNoteType, TapNoteSubType, and TapNoteSource

I intend to make additional useful information available on judgments,
such as TapNoteType and TapNoteSubType( for hold judgments ).

I am submitting this part as a separate pull request because it is more
generally applicable to anything TapNote related.
This commit is contained in:
sigatrev
2014-07-25 18:45:02 -05:00
committed by Jonathan Payne
parent 3945a4a34b
commit 82cb4a198d
28 changed files with 462 additions and 427 deletions
+1 -1
View File
@@ -19,7 +19,7 @@ void ScoreKeeper::GetScoreOfLastTapInRow( const NoteData &nd, int iRow,
{
const TapNote &tn = nd.GetTapNote( track, iRow );
if( tn.type != TapNote::tap && tn.type != TapNote::hold_head )
if( tn.type != TapNoteType_Tap && tn.type != TapNoteType_HoldHead )
continue;
++iNum;
}