Skip to content

Commit 75c7003

Browse files
committed
Fixed a mistake
The Papyrus compiler's error stream was mistakenly being sent to the output stream of the wrapper rather than the error stream, but that has now been corrected.
1 parent 51c722e commit 75c7003

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

Advanced Papyrus.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ static void RunCompiler(string[] args)
166166
};
167167
proc.EnableRaisingEvents = true;
168168
proc.OutputDataReceived += new DataReceivedEventHandler(OutputWriter);
169-
proc.ErrorDataReceived += new DataReceivedEventHandler(OutputWriter);
169+
proc.ErrorDataReceived += new DataReceivedEventHandler(ErrorWriter);
170170
proc.Start();
171171
proc.BeginOutputReadLine();
172172
proc.BeginErrorReadLine();

Advanced Papyrus.exe

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)