ksfdm |D| tag wasn't working because of me... sorry

This commit is contained in:
Alberto Ramos
2010-07-26 19:49:37 -06:00
parent 6db282f98b
commit 2a01c203f2
2 changed files with 10 additions and 6 deletions
+2 -2
View File
@@ -87,14 +87,14 @@ void TimingData::SetStopAtRow( int iRow, float fSeconds, bool bDelay )
if( i == m_StopSegments.size() ) // there is no BPMSegment at the current beat
{
// create a new StopSegment
if( fSeconds > 0 )
if( fSeconds > 0 || PREFSMAN->m_bQuirksMode )
{
AddStopSegment( StopSegment(iRow, fSeconds, bDelay) );
}
}
else // StopSegment being modified is m_StopSegments[i]
{
if( fSeconds > 0 )
if( fSeconds > 0 || PREFSMAN->m_bQuirksMode )
{
m_StopSegments[i].m_fStopSeconds = fSeconds;
//m_StopSegments[i].m_bDelay = bDelay; // use this?