Simple solutions are smart.

This commit is contained in:
Jason Felds
2011-06-08 15:33:40 -04:00
parent fec932e153
commit 06efa5c726
+3 -1
View File
@@ -851,7 +851,9 @@ public:
* @return true if the row can be judged, false otherwise. */ * @return true if the row can be judged, false otherwise. */
bool IsJudgableAtRow( int row ) const bool IsJudgableAtRow( int row ) const
{ {
return !(IsWarpAtRow(row) && IsFakeAtRow(row)); if (IsWarpAtRow(row)) return false;
if (IsFakeAtRow(row)) return false;
return true;
} }
/** /**
* @brief Determine if this notes on this beat can be judged. * @brief Determine if this notes on this beat can be judged.