diff options
Diffstat (limited to 'src/lib/dcpomatic_time.cc')
| -rw-r--r-- | src/lib/dcpomatic_time.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/dcpomatic_time.cc b/src/lib/dcpomatic_time.cc index ae4dea44f..dcdfd97da 100644 --- a/src/lib/dcpomatic_time.cc +++ b/src/lib/dcpomatic_time.cc @@ -53,5 +53,5 @@ operator<< (ostream& s, DCPTime t) bool ContentTimePeriod::overlaps (ContentTimePeriod const & other) const { - return (from < other.to && to > other.from); + return (from < other.to && to >= other.from); } |
