Remove Player::_burn_subtitles; allow subtitles to be burnt onto areas with no video...
[dcpomatic.git] / src / wx / hints_dialog.cc
index df22500d2ca6b6a1f8eca51913f1202a8000656a..668d713216e8ad49b1a40a8a9acd41b0ab7e62fd 100644 (file)
@@ -80,14 +80,14 @@ HintsDialog::film_changed ()
        ContentList content = film->content ();
        int vob = 0;
        for (ContentList::const_iterator i = content.begin(); i != content.end(); ++i) {
-               if (boost::algorithm::starts_with ((*i)->path().filename().string(), "VTS_")) {
+               if (boost::algorithm::starts_with ((*i)->path(0).filename().string(), "VTS_")) {
                        ++vob;
                }
        }
 
        if (vob > 1) {
                hint = true;
-               _text->WriteText (wxString::Format (_("You have %d files that look like they are VOB files from DVD.  You should coalesce them to ensure smooth joins between the files."), vob));
+               _text->WriteText (wxString::Format (_("You have %d files that look like they are VOB files from DVD. You should join them to ensure smooth joins between the files."), vob));
                _text->Newline ();
        }