From 813a659f8a2e97463b2b0998e2dab5512c154381 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 30 Dec 2012 16:53:24 +0100 Subject: [PATCH] (Android) Detects Dual Strike now --- android/native/jni/input_android.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/native/jni/input_android.c b/android/native/jni/input_android.c index f86de9a9a3..031b7a533d 100644 --- a/android/native/jni/input_android.c +++ b/android/native/jni/input_android.c @@ -200,7 +200,7 @@ static void setup_keycode_lut(unsigned port, unsigned id) } else if (strstr(name_buf, "Microsoft")) { - if (strstr(name_buf, "SideWinder Dual Strike")) + if (strstr(name_buf, "Dual Strike")) { snprintf(msg, sizeof(msg), "RetroPad #%d is: Sidewinder Dual Strike.\n", port); keycode_lut[AKEYCODE_BUTTON_4] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift);