diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-12-11 22:12:57 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-12-11 22:12:57 +0000 |
| commit | 00c2ef1c0aa3bc4ada8c8b86d7cbbec522e4844b (patch) | |
| tree | 5ae9349114cc6cb2e3d3728fee78ca7c4dfa6832 /src | |
| parent | ec1bc8a03a2946738b7a4319daee4cf9e566e094 (diff) | |
Fix crash when using the player with automatic audio analysis enabled in prefs (#1419).
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/dcpomatic_player.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/dcpomatic_player.cc b/src/tools/dcpomatic_player.cc index b1227b2f5..550b89ed4 100644 --- a/src/tools/dcpomatic_player.cc +++ b/src/tools/dcpomatic_player.cc @@ -411,7 +411,7 @@ public: reset_film (); try { shared_ptr<DCPContent> dcp (new DCPContent(dir)); - _film->examine_and_add_content (dcp); + _film->examine_and_add_content (dcp, true); bool const ok = display_progress (_("DCP-o-matic Player"), _("Loading content")); if (!ok || !report_errors_from_last_job(this)) { return; |
