mirror of
https://github.com/libretro/RetroArch
synced 2025-04-10 15:45:19 +00:00
(Android) Add Much iReadGo i5 to autodetection list
This commit is contained in:
parent
8707c4c648
commit
650c6f4885
@ -1471,6 +1471,24 @@ static void android_input_set_keybinds(void *data, unsigned device,
|
|||||||
keycode_lut[AKEYCODE_BUTTON_THUMBL] |= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift);
|
keycode_lut[AKEYCODE_BUTTON_THUMBL] |= ((RETRO_DEVICE_ID_JOYPAD_SELECT+1) << shift);
|
||||||
keycode_lut[AKEYCODE_BUTTON_THUMBR] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift);
|
keycode_lut[AKEYCODE_BUTTON_THUMBR] |= ((RETRO_DEVICE_ID_JOYPAD_START+1) << shift);
|
||||||
break;
|
break;
|
||||||
|
case DEVICE_MUCH_IREADGO_I5:
|
||||||
|
g_settings.input.device[port] = device;
|
||||||
|
strlcpy(g_settings.input.device_names[port], "MUCH iReadGo i5",
|
||||||
|
sizeof(g_settings.input.device_names[port]));
|
||||||
|
g_settings.input.dpad_emulation[port] = ANALOG_DPAD_NONE;
|
||||||
|
|
||||||
|
keycode_lut[AKEYCODE_DPAD_UP] |= ((RETRO_DEVICE_ID_JOYPAD_UP+1) << shift);
|
||||||
|
keycode_lut[AKEYCODE_DPAD_DOWN] |= ((RETRO_DEVICE_ID_JOYPAD_DOWN+1) << shift);
|
||||||
|
keycode_lut[AKEYCODE_DPAD_LEFT] |= ((RETRO_DEVICE_ID_JOYPAD_LEFT+1) << shift);
|
||||||
|
keycode_lut[AKEYCODE_DPAD_RIGHT]|= ((RETRO_DEVICE_ID_JOYPAD_RIGHT+1) << shift);
|
||||||
|
|
||||||
|
keycode_lut[AKEYCODE_DPAD_CENTER] |= ((RETRO_DEVICE_ID_JOYPAD_A+1) << shift);
|
||||||
|
keycode_lut[AKEYCODE_BUTTON_B] |= ((RETRO_DEVICE_ID_JOYPAD_B+1) << shift);
|
||||||
|
keycode_lut[AKEYCODE_BUTTON_X] |= ((RETRO_DEVICE_ID_JOYPAD_X+1) << shift);
|
||||||
|
keycode_lut[AKEYCODE_BUTTON_Y] |= ((RETRO_DEVICE_ID_JOYPAD_Y+1) << shift);
|
||||||
|
keycode_lut[AKEYCODE_BUTTON_L1] |= ((RETRO_DEVICE_ID_JOYPAD_L+1) << shift);
|
||||||
|
keycode_lut[AKEYCODE_BUTTON_R1] |= ((RETRO_DEVICE_ID_JOYPAD_R+1) << shift);
|
||||||
|
break;
|
||||||
case DEVICE_CCPCREATIONS_WIIUSE_IME:
|
case DEVICE_CCPCREATIONS_WIIUSE_IME:
|
||||||
g_settings.input.device[port] = device;
|
g_settings.input.device[port] = device;
|
||||||
strlcpy(g_settings.input.device_names[port], "ccpCreations WiiUse IME",
|
strlcpy(g_settings.input.device_names[port], "ccpCreations WiiUse IME",
|
||||||
|
@ -133,6 +133,8 @@ void input_autodetect_setup(void *data, char *msg, size_t sizeof_msg, unsigned p
|
|||||||
device = DEVICE_SUPER_SMARTJOY;
|
device = DEVICE_SUPER_SMARTJOY;
|
||||||
else if (strstr(name_buf, "Jess Tech Dual Analog Rumble Pad"))
|
else if (strstr(name_buf, "Jess Tech Dual Analog Rumble Pad"))
|
||||||
device = DEVICE_SAITEK_RUMBLE_P480;
|
device = DEVICE_SAITEK_RUMBLE_P480;
|
||||||
|
else if (strstr(name_buf, "mtk-kpd"))
|
||||||
|
device = DEVICE_MUCH_IREADGO_I5;
|
||||||
else if (strstr(name_buf, "Microsoft"))
|
else if (strstr(name_buf, "Microsoft"))
|
||||||
{
|
{
|
||||||
if (strstr(name_buf, "Dual Strike"))
|
if (strstr(name_buf, "Dual Strike"))
|
||||||
|
1
driver.h
1
driver.h
@ -271,6 +271,7 @@ enum input_devices
|
|||||||
DEVICE_DEFENDER_GAME_RACER_CLASSIC,
|
DEVICE_DEFENDER_GAME_RACER_CLASSIC,
|
||||||
DEVICE_HOLTEK_JC_U912F,
|
DEVICE_HOLTEK_JC_U912F,
|
||||||
DEVICE_NVIDIA_SHIELD,
|
DEVICE_NVIDIA_SHIELD,
|
||||||
|
DEVICE_MUCH_IREADGO_I5,
|
||||||
#elif defined(GEKKO)
|
#elif defined(GEKKO)
|
||||||
DEVICE_GAMECUBE = 0,
|
DEVICE_GAMECUBE = 0,
|
||||||
#ifdef HW_RVL
|
#ifdef HW_RVL
|
||||||
|
Loading…
x
Reference in New Issue
Block a user