ksfdm |D| tag wasn't working because of me... sorry
This commit is contained in:
+2
-2
@@ -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?
|
||||
|
||||
Reference in New Issue
Block a user