summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-07-23 14:26:02 +0100
committerCarl Hetherington <cth@carlh.net>2019-07-23 14:26:02 +0100
commitbf19399f8c009ff211d5c7b45b0941417d963c4e (patch)
tree3461fb9045462aec4c01de8d5d34f4a73e755b96 /src/tools
parentf737005941d25e5e5743a6770208f31bdca5527d (diff)
Tidy up handling of content-modified checks when using the dcpomatic_cli.
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/dcpomatic.cc2
-rw-r--r--src/tools/dcpomatic_cli.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc
index 5b2e1870b..572a5be40 100644
--- a/src/tools/dcpomatic.cc
+++ b/src/tools/dcpomatic.cc
@@ -757,7 +757,7 @@ private:
a long time, and crashes/power failures are moderately likely.
*/
_film->write_metadata ();
- _film->make_dcp ();
+ _film->make_dcp (true);
} catch (BadSettingError& e) {
error_dialog (this, wxString::Format (_("Bad setting for %s."), std_to_wx(e.setting()).data()), std_to_wx(e.what()));
} catch (std::exception& e) {
diff --git a/src/tools/dcpomatic_cli.cc b/src/tools/dcpomatic_cli.cc
index 9388112f6..13efb6b19 100644
--- a/src/tools/dcpomatic_cli.cc
+++ b/src/tools/dcpomatic_cli.cc
@@ -349,7 +349,7 @@ main (int argc, char* argv[])
cout << "\nMaking DCP for " << film->name() << "\n";
}
- film->make_dcp ();
+ film->make_dcp (false);
bool const error = show_jobs_on_console (progress);
if (keep_going) {