diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-09-21 19:33:11 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-09-21 19:33:11 +0200 |
| commit | c1e8c8638bcb3b4c9d90adc3719f38fa7bf81be9 (patch) | |
| tree | dcc9a6c7318a70f196e2483b0b2aba932f56ca2b /src/lib | |
| parent | 776fa44207f23f2f7a5c92fdf07222dad3229e9a (diff) | |
Fix --standard flag to dcpomatic2_cli (github #9).v2.14.38
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/create_cli.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/create_cli.cc b/src/lib/create_cli.cc index 878ee6fdd..f80af758a 100644 --- a/src/lib/create_cli.cc +++ b/src/lib/create_cli.cc @@ -211,6 +211,10 @@ CreateCLI::CreateCLI (int argc, char* argv[]) return; } + if (standard_string == "interop") { + standard = dcp::INTEROP; + } + if (content.empty()) { error = String::compose("%1: no content specified", argv[0]); return; |
