Remap only IDs between 0 and 16 for now. Fixes some button combo

issues with FBA.
This commit is contained in:
twinaphex 2015-01-10 22:38:58 +01:00
parent 49120c06c9
commit f87590b355

View File

@ -418,7 +418,10 @@ static int16_t input_state(unsigned port, unsigned device,
}
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)
{