mirror of
https://github.com/libretro/RetroArch
synced 2025-02-20 15:40:44 +00:00
This warning doesn't need to be here
This commit is contained in:
parent
56337666de
commit
dd9a810451
@ -474,11 +474,14 @@ static int16_t dinput_input_state(void *data,
|
||||
|
||||
case RETRO_DEVICE_ANALOG:
|
||||
if (binds[port])
|
||||
{
|
||||
ret = dinput_pressed_analog(di, binds[port], idx, id);
|
||||
if (!ret && binds[port])
|
||||
ret = input_joypad_analog(di->joypad, port,
|
||||
if (!ret)
|
||||
ret = input_joypad_analog(di->joypad, port,
|
||||
idx, id, settings->input.binds[port]);
|
||||
return ret;
|
||||
return ret;
|
||||
}
|
||||
return 0;
|
||||
|
||||
case RETRO_DEVICE_MOUSE:
|
||||
return dinput_mouse_state(di, id);
|
||||
|
Loading…
x
Reference in New Issue
Block a user