revert that last change since random vanish crashes anyways

This commit is contained in:
AJ Kelly
2010-05-26 19:02:49 -05:00
parent 5fc8c0c2e9
commit 52db6f068c
+2 -2
View File
@@ -401,6 +401,7 @@ static bool NeedsTapJudging( const TapNote &tn )
{
switch( tn.type )
{
DEFAULT_FAIL( tn.type );
case TapNote::tap:
case TapNote::hold_head:
case TapNote::mine:
@@ -411,7 +412,6 @@ static bool NeedsTapJudging( const TapNote &tn )
case TapNote::autoKeysound:
case TapNote::fake:
return false;
DEFAULT_FAIL( tn.type );
}
}
@@ -419,6 +419,7 @@ static bool NeedsHoldJudging( const TapNote &tn )
{
switch( tn.type )
{
DEFAULT_FAIL( tn.type );
case TapNote::hold_head:
return tn.HoldResult.hns == HNS_None;
case TapNote::tap:
@@ -429,7 +430,6 @@ static bool NeedsHoldJudging( const TapNote &tn )
case TapNote::autoKeysound:
case TapNote::fake:
return false;
DEFAULT_FAIL( tn.type );
}
}