Fixed crash in SDL_mixer on armeabi-v7a arch, caused by improper compiler flags, updated libvorbis

This commit is contained in:
pelya
2012-11-01 18:20:32 +02:00
parent f37cc6cda0
commit e4cace0d07
15 changed files with 212 additions and 103 deletions

View File

@@ -398,7 +398,7 @@ class DataDownloader extends Thread
if( response == null )
{
System.out.println("Error connecting to " + url);
Status.setText( res.getString(R.string.failed_connecting_to, url) + (responseError == null ? "" : ": " + responseError.getStatusLine().getStatusCode() + " " + responseError.response.getStatusLine().getReasonPhrase()) );
Status.setText( res.getString(R.string.failed_connecting_to, url) + (responseError == null ? "" : ": " + responseError.getStatusLine().getStatusCode() + " " + responseError.getStatusLine().getReasonPhrase()) );
return false;
}