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