From 06efa5c726f46f2ade36bafe39678d44c866fd66 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Wed, 8 Jun 2011 15:33:40 -0400 Subject: [PATCH] Simple solutions are smart. --- src/TimingData.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/TimingData.h b/src/TimingData.h index fda617ee4c..58999a23e9 100644 --- a/src/TimingData.h +++ b/src/TimingData.h @@ -851,7 +851,9 @@ public: * @return true if the row can be judged, false otherwise. */ 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.