Fix typo causing incorrectly timed subtitles when their content
[dcpomatic.git] / src / lib / player.cc
index ce51097334be3e6a48107033e8446568d2dc0c4f..1c54d0fc5d4a3259f7f44b082e9d9dfd6bf83f12 100644 (file)
@@ -695,7 +695,7 @@ Player::update_subtitle ()
                to = rint (to * vc->video_frame_rate() / _film->video_frame_rate());
        }
        
-       _out_subtitle.from = from * piece->content->position ();
+       _out_subtitle.from = from + piece->content->position ();
        _out_subtitle.to = to + piece->content->position ();
 }