Skip to content

Commit

Permalink
Fixed a bug that caused the OpenSeeLauncher to only work when `useP…
Browse files Browse the repository at this point in the history
…invoke` was true.
  • Loading branch information
emilianavt committed Sep 28, 2020
1 parent d8c8ed0 commit 8f63c44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Unity/OpenSeeLauncher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ public bool StartTracker() {
processStartInfo.RedirectStandardError = true;
processStartInfo.UseShellExecute = false;
processStartInfo.FileName = exePath;
processStartInfo.Arguments = "facetracker " + argumentString;
processStartInfo.Arguments = argumentString;

trackerSB = new StringBuilder();
trackerProcess = new Process();
Expand Down

0 comments on commit 8f63c44

Please sign in to comment.