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 {
|
||||
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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue