Fixed writing new errors to standard output instead of error output on Android.
This commit is contained in:
parent
8b744670c3
commit
db76896e79
1 changed files with 2 additions and 2 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue