From 388eb6bf1014f9f8234a6d5c5f69c4060c086281 Mon Sep 17 00:00:00 2001 From: Jason Felds Date: Mon, 16 May 2011 10:57:14 -0400 Subject: [PATCH] [splittiming] Updated comment. --- src/ScreenEdit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ScreenEdit.cpp b/src/ScreenEdit.cpp index aa3dd8ca3f..680a9598af 100644 --- a/src/ScreenEdit.cpp +++ b/src/ScreenEdit.cpp @@ -2763,7 +2763,7 @@ void ScreenEdit::HandleScreenMessage( const ScreenMessage SM ) else if ( SM == SM_BackFromWarpChange ) { float fWarp = StringToFloat( ScreenTextEntry::s_sLastAnswer ); - if( fWarp > 0 ) + if( fWarp >= 0 ) // allow 0 to kill a warp. { GetAppropriateTiming().SetWarpAtBeat( GetBeat(), fWarp ); SetDirty( true );