fix songs with stops and manually set BPM not disqualifying with C*

This commit is contained in:
Chris Danford
2005-06-10 20:29:42 +00:00
parent 11b47255ee
commit d1fdc21864
4 changed files with 27 additions and 11 deletions
+7 -2
View File
@@ -347,9 +347,14 @@ void TimingData::ShiftRows( int iStartRow, int iRowsToShift )
}
}
bool TimingData::HasBpmChangesOrStops() const
bool TimingData::HasBpmChanges() const
{
return m_BPMSegments.size()>1 || m_StopSegments.size()>0;
return m_BPMSegments.size()>1;
}
bool TimingData::HasStops() const
{
return m_StopSegments.size()>0;
}
/*