From 5d7ffff221f40ab1194001b6b01e659cc06d3f67 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Sun, 30 Nov 2003 23:53:33 +0000 Subject: [PATCH] fix editor tick --- stepmania/src/ScreenEdit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/src/ScreenEdit.cpp b/stepmania/src/ScreenEdit.cpp index d53c4715c0..fdf6b21785 100644 --- a/stepmania/src/ScreenEdit.cpp +++ b/stepmania/src/ScreenEdit.cpp @@ -373,7 +373,7 @@ bool ScreenEdit::PlayTicks() const bool bAnyoneHasANote = false; // set this to true if any player has a note at one of the indicies we crossed for( int r=iRowLastCrossed+1; r<=iRowNow; r++ ) // for each index we crossed since the last update - bAnyoneHasANote |= m_Player.IsThereATapAtRow( r ); + bAnyoneHasANote |= m_Player.IsThereATapOrHoldHeadAtRow( r ); iRowLastCrossed = iRowNow;