diff --git a/libs/temporal/temporal/bbt_time.h b/libs/temporal/temporal/bbt_time.h index 5f8f012c27..b4a1e8e786 100644 --- a/libs/temporal/temporal/bbt_time.h +++ b/libs/temporal/temporal/bbt_time.h @@ -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); }