Prevent warning

This commit is contained in:
twinaphex 2016-10-31 08:00:57 +01:00
parent 5d28029be8
commit 4945075201

View File

@ -31,7 +31,7 @@ bool android_keyboard_port_input_pressed(const struct retro_keybind *binds, unsi
if (id < RARCH_BIND_LIST_END)
{
const struct retro_keybind *bind = &binds[id];
unsigned bit = input_keymaps_translate_rk_to_keysym(binds[id].key);
unsigned bit = input_keymaps_translate_rk_to_keysym(bind->key);
return BIT_GET(android_key_state[ANDROID_KEYBOARD_PORT], bit);
}
return false;