From: Carl Hetherington Date: Thu, 5 Nov 2020 20:36:32 +0000 (+0100) Subject: Fix start_player() on macOS (#1870). X-Git-Tag: v2.15.107 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=fbc94e2eec71240f3470a6a9cbe66a76fd3cbd7e;hp=99cb06de7d7dde4c558d69bbce5fe09090bada27;p=dcpomatic.git Fix start_player() on macOS (#1870). --- diff --git a/src/lib/cross_osx.cc b/src/lib/cross_osx.cc index 7817348e2..dcee2a345 100644 --- a/src/lib/cross_osx.cc +++ b/src/lib/cross_osx.cc @@ -209,9 +209,8 @@ void start_tool (string executable, string app) { boost::filesystem::path exe_path = directory_containing_executable(); - exe_path = exe_path.parent_path (); // MacOS exe_path = exe_path.parent_path (); // Contents - exe_path = exe_path.parent_path (); // DCP-o-matic.app + exe_path = exe_path.parent_path (); // DCP-o-matic 2.app exe_path = exe_path.parent_path (); // Applications exe_path /= app; exe_path /= "Contents";