[editorKeysounds] More attempts, need help.

Anyone want a stab?

Main issue: tap + autoKeysound means skipped judgment.
This commit is contained in:
Jason Felds
2012-02-10 23:16:00 -05:00
parent 2f6240d372
commit 22033113a5
3 changed files with 34 additions and 15 deletions
+4 -1
View File
@@ -250,7 +250,10 @@ TapNoteScore NoteDataWithScoring::MinTapNoteScore( const NoteData &in, unsigned
{
// Ignore mines (and fake arrows), or the score will always be TNS_None.
const TapNote &tn = in.GetTapNote( t, row );
if( tn.type == TapNote::empty || tn.type == TapNote::mine || tn.type == TapNote::fake )
if (tn.type == TapNote::empty ||
tn.type == TapNote::mine ||
tn.type == TapNote::fake ||
tn.type == TapNote::autoKeysound)
continue;
score = min( score, tn.result.tns );
}