Subtitle rearrangements.
[dcpomatic.git] / src / lib / cross.cc
index 5875e4f40dadf20bb899dced5bf18f96707e86ca..4e801f44cb4940fb1667ffd897b6de57ba93dc9f 100644 (file)
@@ -367,7 +367,7 @@ start_batch_converter (boost::filesystem::path dcpomatic)
        batch = batch.parent_path (); // Contents
        batch = batch.parent_path (); // DCP-o-matic.app
        batch = batch.parent_path (); // Applications
-       batch /= "DCP-o-matic 2 Batch Converter.app";
+       batch /= "DCP-o-matic\\ 2\\ Batch\\ Converter.app";
        batch /= "Contents";
        batch /= "MacOS";
        batch /= "dcpomatic2_batch";
@@ -376,7 +376,7 @@ start_batch_converter (boost::filesystem::path dcpomatic)
 #if defined(DCPOMATIC_LINUX) || defined(DCPOMATIC_OSX)
        pid_t pid = fork ();
        if (pid == 0) {
-               std::cout << "start " << batch << "\n";
+               std::cout << "start " << batch << " from " << dcpomatic << "\n";
                int const r = system (batch.string().c_str());
                exit (WEXITSTATUS (r));
        }