Forward-port thinko fix from v1.
[dcpomatic.git] / src / lib / playlist.cc
index 5203160a876373258748e6c7b0f0663c3375d66c..41ed00b24d6c06b341a300f40c732b357ca96a1f 100644 (file)
@@ -306,7 +306,7 @@ Playlist::active_frame_rate_change (DCPTime t, int dcp_video_frame_rate) const
        for (ContentList::const_iterator i = _content.begin(); i != _content.end(); ++i) {
                shared_ptr<const VideoContent> vc = dynamic_pointer_cast<const VideoContent> (*i);
                if (!vc) {
-                       break;
+                       continue;
                }
 
                if (vc->position() >= t && t < vc->end()) {