소스 검색

Android: Improved last error message for failed APK expansion file use.

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

+ 1 - 1
android-project/src/org/libsdl/app/SDLActivity.java

@@ -742,7 +742,7 @@ public class SDLActivity extends Activity {
 
         if (fileStream == null) {
             // calling "getInputStream" was successful but null was returned
-            throw new IOException("Could not open stream from APK expansion file");
+            throw new IOException("Could not find path in APK expansion file");
         }
 
         return fileStream;