mirror of
https://github.com/yawut/SDL.git
synced 2026-04-25 07:52:57 -05:00
Fixed writing new errors to standard output instead of error output on Android.
This commit is contained in:
parent
28e6e9079b
commit
402661665d
|
|
@ -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
Block a user