# HG changeset patch # User Philipp Wiesemann # Date 1414074888 -7200 # Node ID 8f97a0f537e4343ad422359b1a834bc1261f0388 # Parent e5eb4ee3b5ff0680f0e05d3843af0ccb84f9494f Fixed typo in message of alert dialog for not loaded libraries on Android. diff -r e5eb4ee3b5ff -r 8f97a0f537e4 android-project/src/org/libsdl/app/SDLActivity.java --- a/android-project/src/org/libsdl/app/SDLActivity.java Thu Oct 23 16:33:27 2014 +0200 +++ b/android-project/src/org/libsdl/app/SDLActivity.java Thu Oct 23 16:34:48 2014 +0200 @@ -122,7 +122,7 @@ if (mBrokenLibraries) { AlertDialog.Builder dlgAlert = new AlertDialog.Builder(this); - dlgAlert.setMessage("An error occurred while try to start the application. Please try again and/or reinstall."); + dlgAlert.setMessage("An error occurred while trying to start the application. Please try again and/or reinstall."); dlgAlert.setTitle("SDL Error"); dlgAlert.setPositiveButton("EXIT", new DialogInterface.OnClickListener() {