summaryrefslogtreecommitdiff
path: root/Source/Android/jni/AndroidCommon/IDCache.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2022-09-18 14:33:02 +0200
committerJosJuice <josjuice@gmail.com>2023-03-03 22:28:23 +0100
commit68ebb5c33e49aec1b7a49f1b1de94ef2291d319c (patch)
tree4482e86b32ec092182bdcbbdc2fdbd6551a97ae6 /Source/Android/jni/AndroidCommon/IDCache.cpp
parent9e7a2ee0fb307977bb0ae4245c8738ebd33df44b (diff)
Android: Remove old rumble implementation
Diffstat (limited to 'Source/Android/jni/AndroidCommon/IDCache.cpp')
-rw-r--r--Source/Android/jni/AndroidCommon/IDCache.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/Android/jni/AndroidCommon/IDCache.cpp b/Source/Android/jni/AndroidCommon/IDCache.cpp
index d02ccd9aa9..8e43016c62 100644
--- a/Source/Android/jni/AndroidCommon/IDCache.cpp
+++ b/Source/Android/jni/AndroidCommon/IDCache.cpp
@@ -13,7 +13,6 @@ static jclass s_string_class;
static jclass s_native_library_class;
static jmethodID s_display_alert_msg;
-static jmethodID s_do_rumble;
static jmethodID s_update_touch_pointer;
static jmethodID s_on_title_changed;
static jmethodID s_finish_emulation_activity;
@@ -124,11 +123,6 @@ jmethodID GetDisplayAlertMsg()
return s_display_alert_msg;
}
-jmethodID GetDoRumble()
-{
- return s_do_rumble;
-}
-
jmethodID GetUpdateTouchPointer()
{
return s_update_touch_pointer;
@@ -408,7 +402,6 @@ JNIEXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved)
s_native_library_class = reinterpret_cast<jclass>(env->NewGlobalRef(native_library_class));
s_display_alert_msg = env->GetStaticMethodID(s_native_library_class, "displayAlertMsg",
"(Ljava/lang/String;Ljava/lang/String;ZZZ)Z");
- s_do_rumble = env->GetStaticMethodID(s_native_library_class, "rumble", "(ID)V");
s_update_touch_pointer =
env->GetStaticMethodID(s_native_library_class, "updateTouchPointer", "()V");
s_on_title_changed = env->GetStaticMethodID(s_native_library_class, "onTitleChanged", "()V");