From 94935bc45e93713d9ab1e5b87ea0d7e42969069f Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Sun, 3 Nov 2019 23:11:29 +1000 Subject: [PATCH] Fix #1714 why is RedirectStandardInput=true,UseShellExecute=false not the default --- BizHawk.Common/OSTailoredCode.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BizHawk.Common/OSTailoredCode.cs b/BizHawk.Common/OSTailoredCode.cs index e130cf94e1..881b04fac1 100644 --- a/BizHawk.Common/OSTailoredCode.cs +++ b/BizHawk.Common/OSTailoredCode.cs @@ -127,6 +127,7 @@ namespace BizHawk.Common CreateNoWindow = true, FileName = cmd, RedirectStandardError = checkStderr, + RedirectStandardInput = true, RedirectStandardOutput = checkStdout, UseShellExecute = false } @@ -149,4 +150,4 @@ namespace BizHawk.Common } } } -} \ No newline at end of file +}