Improve ratings dialog to allow only valid values (#2199).
[dcpomatic.git] / src / lib / verify_dcp_job.cc
index 1b30b2112d6395329ab640cdebcb02356d6768a2..b59f5bfabb34eb43964295fd35cad2865500465c 100644 (file)
@@ -76,7 +76,7 @@ VerifyDCPJob::update_stage (string s, optional<boost::filesystem::path> path)
 void
 VerifyDCPJob::run ()
 {
-       _notes = dcp::verify (_directories, bind (&VerifyDCPJob::update_stage, this, _1, _2), bind (&VerifyDCPJob::set_progress, this, _1, false), xsd_path());
+       _notes = dcp::verify (_directories, bind (&VerifyDCPJob::update_stage, this, _1, _2), bind (&VerifyDCPJob::set_progress, this, _1, false), libdcp_resources_path() / "xsd");
 
        bool failed = false;
        for (auto i: _notes) {