Fix path to ffmpeg.exe
This commit is contained in:
parent
7779b2f7db
commit
938b0a63de
|
@ -82,7 +82,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
{
|
{
|
||||||
ffmpeg = new Process();
|
ffmpeg = new Process();
|
||||||
#if WINDOWS
|
#if WINDOWS
|
||||||
ffmpeg.StartInfo.FileName = System.IO.Path.Combine(PathManager.GetDllDirectory(), "dll", "ffmpeg.exe");
|
ffmpeg.StartInfo.FileName = System.IO.Path.Combine(PathManager.GetDllDirectory(), "ffmpeg.exe");
|
||||||
#else
|
#else
|
||||||
ffmpeg.StartInfo.FileName = "ffmpeg"; // expecting native version to be in path
|
ffmpeg.StartInfo.FileName = "ffmpeg"; // expecting native version to be in path
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue