This commit is contained in:
twinaphex 2020-04-17 16:29:23 +02:00
parent 9f3a2db44e
commit f3b82dc998
2 changed files with 2 additions and 2 deletions

View File

@ -125,11 +125,13 @@ void input_mapper_poll(input_mapper_t *handle,
remap_valid = (current_button_value == 1) &&
(j != remap_button) && (remap_button != RARCH_UNMAPPED);
#ifdef HAVE_ACCESSIBILITY
/* gamepad override */
if (i==0 && get_gamepad_input_override() & (1<<j))
{
BIT256_SET(handle->buttons[i], j);
}
#endif
if (remap_valid)
{

View File

@ -31134,6 +31134,4 @@ void reset_gamepad_input_override(void)
{
gamepad_input_override = 0;
}
#endif