(Android) All keyboard hotkeys work now

This commit is contained in:
twinaphex 2012-11-03 00:57:47 +01:00
parent 0dbcdb087d
commit 1d31f7efa0

View File

@ -406,7 +406,7 @@ static bool android_input_key_pressed(void *data, int key)
if(key == RARCH_QUIT_KEY && (g_android.input_state & (1ULL << RARCH_KILL)))
return true;
else if(g_android.input_state & key)
else if(g_android.input_state & (1ULL << key))
return true;
return false;