Bring in updates to the combos branch.

This commit is contained in:
Jason Felds
2011-03-04 22:20:29 -05:00
10 changed files with 80 additions and 8 deletions
+2 -2
View File
@@ -86,10 +86,10 @@ void TimingData::SetStopAtRow( int iRow, float fSeconds, bool bDelay )
{
unsigned i;
for( i=0; i<m_StopSegments.size(); i++ )
if( m_StopSegments[i].m_iStartRow == iRow )
if( m_StopSegments[i].m_iStartRow == iRow && m_StopSegments[i].m_bDelay == bDelay )
break;
if( i == m_StopSegments.size() ) // there is no StopSegment at the current beat
if( i == m_StopSegments.size() ) // there is no Stop/Delay Segment at the current beat
{
// create a new StopSegment
if( fSeconds > 0 || PREFSMAN->m_bQuirksMode )