mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-16 15:27:41 +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)
|
||||
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)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user