Skip to content

Commit

Permalink
Fixed writing new errors to standard output instead of error output o…
Browse files Browse the repository at this point in the history
…n Android.
  • Loading branch information
philippwiesemann committed Oct 23, 2014
1 parent 85bed09 commit 391c31c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions android-project/src/org/libsdl/app/SDLActivity.java
Expand Up @@ -112,10 +112,10 @@ protected void onCreate(Bundle savedInstanceState) {
try {
loadLibraries();
} catch(UnsatisfiedLinkError e) {
System.out.println(e.getMessage());
System.err.println(e.getMessage());
mBrokenLibraries = true;
} catch(Exception e) {
System.out.println(e.getMessage());
System.err.println(e.getMessage());
mBrokenLibraries = true;
}

Expand Down

0 comments on commit 391c31c

Please sign in to comment.