More accurate for CMod checking.

This commit is contained in:
Jason Felds
2011-06-01 10:08:40 -04:00
parent df6a00b53e
commit e0f36181be
+2 -2
View File
@@ -1603,12 +1603,12 @@ bool TimingData::HasFakes() const
bool TimingData::HasSpeedChanges() const bool TimingData::HasSpeedChanges() const
{ {
return m_SpeedSegments.size()>1; return m_SpeedSegments.size()>1 || m_SpeedSegments[0].GetRatio() != 1;
} }
bool TimingData::HasScrollChanges() const bool TimingData::HasScrollChanges() const
{ {
return m_ScrollSegments.size()>1; return m_ScrollSegments.size()>1 || m_ScrollSegments[0].GetRatio() != 1;
} }
void TimingData::NoteRowToMeasureAndBeat( int iNoteRow, int &iMeasureIndexOut, int &iBeatIndexOut, int &iRowsRemainder ) const void TimingData::NoteRowToMeasureAndBeat( int iNoteRow, int &iMeasureIndexOut, int &iBeatIndexOut, int &iRowsRemainder ) const