fix hold notes at the very beginning of songs

This commit is contained in:
Glenn Maynard
2002-09-10 23:53:51 +00:00
parent c35710ffbb
commit 98cd268135
+1 -1
View File
@@ -176,7 +176,7 @@ void NoteData::CopyRange( NoteData* pFrom, int iFromIndexBegin, int iFromIndexEn
void NoteData::AddHoldNote( HoldNote add ) void NoteData::AddHoldNote( HoldNote add )
{ {
ASSERT( add.m_fStartBeat>0 && add.m_fEndBeat>0 ); ASSERT( add.m_fStartBeat>=0 && add.m_fEndBeat>=0 );
int i; int i;