[GX] fix custom bind commands

This commit is contained in:
Toad King 2014-02-27 18:29:53 -05:00
parent c90afd09f9
commit cc87f3a08d

View File

@ -866,7 +866,7 @@ static void gx_input_poll(void *data)
static bool gx_input_key_pressed(void *data, int key)
{
return (g_extern.lifecycle_state & (1ULL << key));
return (g_extern.lifecycle_state & (1ULL << key)) || input_joypad_pressed(&gx_joypad, 0, g_settings.input.binds[0], key);
}
static uint64_t gx_input_get_capabilities(void *data)