浏览代码

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;