소스 검색

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

Philipp Wiesemann 11 년 전
부모
커밋
d4bdd2469f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      android-project/src/org/libsdl/app/SDLActivity.java

+ 1 - 1
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() {