diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-07-06 09:32:10 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-07-06 09:32:10 +0200 |
| commit | fefcccd526bd4cf12dfdf43ce36ccb62b044528e (patch) | |
| tree | c110a258ef02d131222417b4cbcb6872d4a8636c /src/tools/dcpomatic_create.cc | |
| parent | 0ca9937987ecf2bf3f579147ffc952838565415b (diff) | |
Add some missing ArgFixers for Windows command lines (#2844).
Diffstat (limited to 'src/tools/dcpomatic_create.cc')
| -rw-r--r-- | src/tools/dcpomatic_create.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/dcpomatic_create.cc b/src/tools/dcpomatic_create.cc index 5b5f4dba2..e0d5b3973 100644 --- a/src/tools/dcpomatic_create.cc +++ b/src/tools/dcpomatic_create.cc @@ -70,10 +70,12 @@ public: int main (int argc, char* argv[]) { + ArgFixer fixer(argc, argv); + dcpomatic_setup_path_encoding (); dcpomatic_setup (); - CreateCLI cc (argc, argv); + CreateCLI cc(fixer.argc(), fixer.argv()); if (cc.error) { cerr << *cc.error << "\n"; exit (1); |
