From 00e0c7c801ec3ee3512c4384ed698351d72dc913 Mon Sep 17 00:00:00 2001 From: AJ Kelly Date: Thu, 11 Feb 2010 17:42:20 -0600 Subject: [PATCH] add TapNote::autoKeysound to NeedsTapJudging, NeedsHoldJudging; Fixes a crash with keysounded files. --- src/Player.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Player.cpp b/src/Player.cpp index fb8eefd7c2..fc0f70376a 100644 --- a/src/Player.cpp +++ b/src/Player.cpp @@ -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; }