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 fa6271354..812c756ec 100644 --- a/src/lib/dcpomatic_time.cc +++ b/src/lib/dcpomatic_time.cc @@ -59,5 +59,5 @@ ContentTimePeriod::overlaps (ContentTimePeriod const & other) const bool ContentTimePeriod::contains (ContentTime const & other) const { - return (from >= other && to < other); + return (from <= other && other < to); } |
