From c0acb4e336449b63057c4baa8409d25162d2fa34 Mon Sep 17 00:00:00 2001 From: Thai Pangsakulyanont Date: Sun, 27 Mar 2011 15:56:40 +0700 Subject: [PATCH] fix: stops in warps are judged, but not delays --- src/TimingData.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/TimingData.cpp b/src/TimingData.cpp index 1ddb2d6ad1..989b780dff 100644 --- a/src/TimingData.cpp +++ b/src/TimingData.cpp @@ -354,7 +354,7 @@ bool TimingData::IsWarpAtRow( int iNoteRow ) const { return true; } - if( GetStopAtRow(iNoteRow) != 0.0f ) + if( GetStopAtRow(iNoteRow) != 0.0f || GetDelayAtRow(iNoteRow) != 0.0f ) { return false; }