no message

This commit is contained in:
Chris Danford
2002-06-27 17:49:10 +00:00
parent eaa6be3a71
commit cf9b808ea3
37 changed files with 551 additions and 285 deletions
+2 -3
View File
@@ -552,10 +552,9 @@ void NoteData::Convert2sAnd3sToHoldNotes()
{
if( m_TapNotes[col][i] == '2' ) // this is a HoldNote begin marker
{
for( int j=i; j<MAX_TAP_NOTE_ROWS; j++ ) // search for end of HoldNote
for( int j=i+1; j<MAX_TAP_NOTE_ROWS; j++ ) // search for end of HoldNote
{
if( m_TapNotes[col][j] == '1' ||
m_TapNotes[col][j] == '3' ) // found it!
if( m_TapNotes[col][j] != '0' ) // end on the next note we see
{
HoldNote hn = { col, i, j };
AddHoldNote( hn );