From 3f94afafddaac00cdf333ba4d3dc9ddfa59f8c1a Mon Sep 17 00:00:00 2001 From: "Devin J. Pohly" Date: Thu, 16 May 2013 21:21:40 -0400 Subject: [PATCH] Revert "test: try to fix "phantom holds" when JudgeHoldNotesOnSameTogether is enabled" This reverts commit 6999f94d38919b013e351160dbdeb7690dbaa668. This was causing a crash when warping past holds at the end of a chart. --- src/Player.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/Player.cpp b/src/Player.cpp index 68d84d73f2..547a62d3b9 100644 --- a/src/Player.cpp +++ b/src/Player.cpp @@ -1104,13 +1104,6 @@ void Player::UpdateHoldNotes( int iSongRow, float fDeltaTime, vectoriRow ); TapNote &tn = *trtn->pTN; int iEndRow = iStartRow + tn.iDuration; - - if( iEndRow < iSongRow ) - { - trtn = --vTN.erase(trtn); - continue; - } - if( subType == TapNote::SubType_Invalid ) subType = tn.subType;