Commit d4bdd2469fdb6dc614e2db05cf9beb1ca1b1d66a

Philipp Wiesemann 2014-10-23T16:34:48

Fixed typo in message of alert dialog for not loaded libraries on Android.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/android-project/src/org/libsdl/app/SDLActivity.java b/android-project/src/org/libsdl/app/SDLActivity.java
index ea03dda..d2a5bd8 100644
--- a/android-project/src/org/libsdl/app/SDLActivity.java
+++ b/android-project/src/org/libsdl/app/SDLActivity.java
@@ -122,7 +122,7 @@ public class SDLActivity extends Activity {
         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() {