mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 20:55:48 +01:00
fix logic error in BBT_Time::operator>=
This commit is contained in:
parent
2d6eaad775
commit
be831c6870
1 changed files with 1 additions and 1 deletions
|
|
@ -68,7 +68,7 @@ struct LIBTEMPORAL_API BBT_Time
|
|||
|
||||
bool operator>= (const BBT_Time& other) const {
|
||||
return bars > other.bars ||
|
||||
(bars >= other.bars && beats >= other.beats) ||
|
||||
(bars >= other.bars && beats > other.beats) ||
|
||||
(bars >= other.bars && beats >= other.beats && ticks >= other.ticks);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue