From be831c68709e970eb7907dfd09aaf0a9489cf9f7 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 2 Nov 2018 09:58:48 -0400 Subject: [PATCH] fix logic error in BBT_Time::operator>= --- 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 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); }