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:
@@ -123,13 +123,13 @@ static RString NotesToDWIString( const TapNote tnCols[6] )
|
||||
{
|
||||
switch( tnCols[col].type )
|
||||
{
|
||||
case TapNote::empty:
|
||||
case TapNote::mine:
|
||||
case TapNoteType_Empty:
|
||||
case TapNoteType_Mine:
|
||||
continue;
|
||||
default: break;
|
||||
}
|
||||
|
||||
if( tnCols[col].type == TapNote::hold_head )
|
||||
if( tnCols[col].type == TapNoteType_HoldHead )
|
||||
holds += dirs[col];
|
||||
else
|
||||
taps += dirs[col];
|
||||
|
||||
Reference in New Issue
Block a user