From c41c622b373d2120e8659dd33090b28ffa196580 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 3 Nov 2018 23:15:16 -0400 Subject: [PATCH] another BBT comparator fix --- libs/temporal/temporal/bbt_time.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }