mirror of
https://github.com/libretro/RetroArch
synced 2025-04-18 14:42:30 +00:00
input_state_internal - small cleanup for RETRO_DEVICE_JOYPAD
This commit is contained in:
parent
f94a924be9
commit
5aebbdfddb
17
retroarch.c
17
retroarch.c
@ -3315,16 +3315,10 @@ static int16_t input_state_internal(
|
|||||||
bool bind_valid = libretro_input_binds[port]
|
bool bind_valid = libretro_input_binds[port]
|
||||||
&& libretro_input_binds[port][id].valid;
|
&& libretro_input_binds[port][id].valid;
|
||||||
|
|
||||||
if (bind_valid)
|
if (settings->bools.input_remap_binds_enable &&
|
||||||
{
|
id != settings->uints.input_remap_ids[port][id])
|
||||||
/* reset_state - used to reset input state of a button
|
res = 0;
|
||||||
* when the gamepad mapper is in action for that button*/
|
else if (bind_valid)
|
||||||
bool reset_state = false;
|
|
||||||
if (settings->bools.input_remap_binds_enable)
|
|
||||||
if (id != settings->uints.input_remap_ids[port][id])
|
|
||||||
reset_state = true;
|
|
||||||
|
|
||||||
if (!reset_state)
|
|
||||||
{
|
{
|
||||||
if (button_mask)
|
if (button_mask)
|
||||||
{
|
{
|
||||||
@ -3340,9 +3334,6 @@ static int16_t input_state_internal(
|
|||||||
res |= res_overlay;
|
res |= res_overlay;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
else
|
|
||||||
res = 0;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (settings->bools.input_remap_binds_enable && input_driver_mapper)
|
if (settings->bools.input_remap_binds_enable && input_driver_mapper)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user