From 003ee30f93e29b7af869bcf323c10f8737f853de Mon Sep 17 00:00:00 2001 From: Toad King Date: Fri, 31 Oct 2014 20:44:14 -0500 Subject: [PATCH] fix JNI signatures for getVendorId/getProductId --- input/android_input.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/input/android_input.c b/input/android_input.c index 3a9b273bb0..399900ec1d 100644 --- a/input/android_input.c +++ b/input/android_input.c @@ -305,7 +305,7 @@ static bool android_input_lookup_name(char *buf, RARCH_LOG("device name: %s\n", buf); getVendorId = NULL; - GET_METHOD_ID(env, getVendorId, class, "getVendorId", "()I;"); + GET_METHOD_ID(env, getVendorId, class, "getVendorId", "()I"); if (!getVendorId) goto error; @@ -318,7 +318,7 @@ static bool android_input_lookup_name(char *buf, RARCH_LOG("device vendor id: %d\n", *vendorId); getProductId = NULL; - GET_METHOD_ID(env, getProductId, class, "getProductId", "()I;"); + GET_METHOD_ID(env, getProductId, class, "getProductId", "()I"); if (!getProductId) goto error;