(Menu) Spacebar toggles 'RetroPad Start' action

This commit is contained in:
twinaphex 2016-02-13 04:18:07 +01:00
parent 0f35e0639e
commit fed8570ec3

View File

@ -211,6 +211,10 @@ static void menu_input_key_event(bool down, unsigned keycode,
pending_iter.action = MENU_ACTION_CANCEL;
menu_driver_ctl(RARCH_MENU_CTL_SET_PENDING_ACTION, NULL);
break;
case RETROK_SPACE:
pending_iter.action = MENU_ACTION_START;
menu_driver_ctl(RARCH_MENU_CTL_SET_PENDING_ACTION, NULL);
break;
}
}
}