diff --git a/BizHawk.Emulation/DiscSystem/Decoding.cs b/BizHawk.Emulation/DiscSystem/Decoding.cs index f1941bdb7d..48413b7060 100644 --- a/BizHawk.Emulation/DiscSystem/Decoding.cs +++ b/BizHawk.Emulation/DiscSystem/Decoding.cs @@ -64,8 +64,8 @@ namespace BizHawk.DiscSystem oInfo.RedirectStandardError = true; Process proc = System.Diagnostics.Process.Start(oInfo); - proc.WaitForExit(); string result = proc.StandardError.ReadToEnd(); + proc.WaitForExit(); return result; }