GSDumpGUI: Actually start reading the stderr stream.

This commit is contained in:
KrossX
2019-07-29 22:48:08 -03:00
committed by lightningterror
parent b6415bf6fc
commit c14c23a063

View File

@@ -401,6 +401,7 @@ namespace GSDumpGUI
p.OutputDataReceived += new DataReceivedEventHandler(p_StdOutDataReceived);
p.ErrorDataReceived += new DataReceivedEventHandler(p_StdErrDataReceived);
p.BeginOutputReadLine();
p.BeginErrorReadLine();
p.Exited += new EventHandler(p_Exited);
Processes.Add(p);
}