mirror of
https://github.com/libretro/RetroArch
synced 2025-04-09 21:45:45 +00:00
Remap only IDs between 0 and 16 for now. Fixes some button combo
issues with FBA.
This commit is contained in:
parent
49120c06c9
commit
f87590b355
@ -418,7 +418,10 @@ static int16_t input_state(unsigned port, unsigned device,
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (g_settings.input.remap_binds_enable)
|
if (g_settings.input.remap_binds_enable)
|
||||||
id = g_settings.input.remap_ids[port][id];
|
{
|
||||||
|
if (id >= 0 && id < RARCH_FIRST_CUSTOM_BIND)
|
||||||
|
id = g_settings.input.remap_ids[port][id];
|
||||||
|
}
|
||||||
|
|
||||||
if (!driver.block_libretro_input)
|
if (!driver.block_libretro_input)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user