mirror of https://github.com/encounter/SDL.git
Fixed writing new errors to standard output instead of error output on Android.
This commit is contained in:
parent
85bed09561
commit
391c31cf06
|
@ -112,10 +112,10 @@ public class SDLActivity extends Activity {
|
||||||
try {
|
try {
|
||||||
loadLibraries();
|
loadLibraries();
|
||||||
} catch(UnsatisfiedLinkError e) {
|
} catch(UnsatisfiedLinkError e) {
|
||||||
System.out.println(e.getMessage());
|
System.err.println(e.getMessage());
|
||||||
mBrokenLibraries = true;
|
mBrokenLibraries = true;
|
||||||
} catch(Exception e) {
|
} catch(Exception e) {
|
||||||
System.out.println(e.getMessage());
|
System.err.println(e.getMessage());
|
||||||
mBrokenLibraries = true;
|
mBrokenLibraries = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue