add TapNote::autoKeysound to NeedsTapJudging, NeedsHoldJudging; Fixes a crash with keysounded files.

This commit is contained in:
AJ Kelly
2010-02-11 17:42:20 -06:00
parent a4a44e6a28
commit 00e0c7c801
+2
View File
@@ -407,6 +407,7 @@ static bool NeedsTapJudging( const TapNote &tn )
return tn.result.tns == TNS_None;
case TapNote::hold_tail:
case TapNote::attack:
case TapNote::autoKeysound:
case TapNote::fake:
return false;
}
@@ -424,6 +425,7 @@ static bool NeedsHoldJudging( const TapNote &tn )
case TapNote::mine:
case TapNote::lift:
case TapNote::attack:
case TapNote::autoKeysound:
case TapNote::fake:
return false;
}