Fixing issues discovered by Philipp Wiesemann

--HG--
branch : apk
This commit is contained in:
stopiccot 2014-04-23 03:42:32 +03:00
parent a41b3ce38b
commit 20623e3dad
3 changed files with 5 additions and 5 deletions

View file

@ -300,7 +300,7 @@ public class SDLActivity extends Activity {
int is_accelerometer, int nbuttons,
int naxes, int nhats, int nballs);
public static native int nativeRemoveJoystick(int device_id);
public static native String getHint(String name);
public static native String nativeGetHint(String name);
public static void flipBuffers() {
SDLActivity.nativeFlipBuffers();
@ -507,8 +507,8 @@ public class SDLActivity extends Activity {
public InputStream openAPKExtensionInputStream(String fileName) throws IOException {
// Get a ZipResourceFile representing a merger of both the main and patch files
if (expansionFile == null) {
Integer mainVersion = Integer.parseInt(getHint("SDL_ANDROID_APK_EXPANSION_MAIN_FILE_VERSION"));
Integer patchVersion = Integer.parseInt(getHint("SDL_ANDROID_APK_EXPANSION_MAIN_FILE_VERSION"));
Integer mainVersion = Integer.parseInt(nativeGetHint("SDL_ANDROID_APK_EXPANSION_MAIN_FILE_VERSION"));
Integer patchVersion = Integer.parseInt(nativeGetHint("SDL_ANDROID_APK_EXPANSION_PATCH_FILE_VERSION"));
expansionFile = APKExpansionSupport.getAPKExpansionZipFile(this, mainVersion, patchVersion);
}