trying to undo the death of default branch

This commit is contained in:
AJ Kelly
2011-01-10 23:58:53 -06:00
parent 45b1664147
commit 3925c38316
2 changed files with 6 additions and 1 deletions
+1
View File
@@ -16,6 +16,7 @@ sm-ssc v1.2.1 | 20110???
20110110
--------
* [Character] Added GetDisplayName Lua binding. [freem]
* Make sure that DELAYS come first if STOPS share the same beat. [Wolfman2000]
20110109
--------
+5 -1
View File
@@ -54,7 +54,11 @@ struct StopSegment
return true;
}
bool operator!=( const StopSegment &other ) const { return !operator==(other); }
bool operator<( const StopSegment &other ) const { return m_iStartRow < other.m_iStartRow; }
bool operator<( const StopSegment &other ) const
{
return ( m_iStartRow < other.m_iStartRow ) ||
( m_iStartRow == other.m_iStartRow && m_bDelay );
}
};
/* This only supports simple time signatures. The upper number (called the numerator here, though this isn't