Skip to content

Commit

Permalink
setStdOut的bug
Browse files Browse the repository at this point in the history
  • Loading branch information
herbix committed May 15, 2014
1 parent f6aefa0 commit 745f611
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified build/SSASTLauncher.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/org/ssast/minecraft/LauncherFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -342,8 +342,8 @@ public void actionPerformed(ActionEvent e) {
public void setStdOut() {
thisStdOut = new PrintStream(new ConsoleOutputStream(), true);
oldStdOut = System.out;
System.setOut(thisStdOut);
if(Config.showDebugInfo) {
System.setOut(thisStdOut);
System.setErr(thisStdOut);
}
}
Expand Down

0 comments on commit 745f611

Please sign in to comment.