mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-02-03 18:22:42 +00:00
[GX] fix custom bind commands
This commit is contained in:
parent
c90afd09f9
commit
cc87f3a08d
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user