Various multi-reel fixes.
[dcpomatic.git] / src / lib / player.h
index cd1423e9f89fd71d0a34a2cd745fcf2baab9ad2c..3106a3477abef0cd760a607004e78effe00e5fb5 100644 (file)
@@ -106,7 +106,7 @@ private:
                                continue;
                        }
 
-                       if ((*i)->content->position() <= to && (*i)->content->end() >= from) {
+                       if ((*i)->content->position() < to && (*i)->content->end() > from) {
                                overlaps.push_back (*i);
                        }
                }