From 40364541f5e7a7179a17e969f928615732fec159 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Fri, 18 Sep 2015 21:26:28 +0200 Subject: [PATCH] Android: Improved last error message for failed APK expansion file use. --- android-project/src/org/libsdl/app/SDLActivity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android-project/src/org/libsdl/app/SDLActivity.java b/android-project/src/org/libsdl/app/SDLActivity.java index f2a42dd9dbc18..9b733cf502b07 100644 --- a/android-project/src/org/libsdl/app/SDLActivity.java +++ b/android-project/src/org/libsdl/app/SDLActivity.java @@ -742,7 +742,7 @@ public InputStream openAPKExpansionInputStream(String fileName) throws IOExcepti 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;