Fixed writing new errors to standard output instead of error output on Android.
--- a/android-project/src/org/libsdl/app/SDLActivity.java Thu Oct 23 16:31:02 2014 +0200
+++ b/android-project/src/org/libsdl/app/SDLActivity.java Thu Oct 23 16:33:27 2014 +0200
@@ -112,10 +112,10 @@
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;
}