Chip8: implement missing key

KEYA is defined for Fuze+ (even in the manual),
but wasn't implemented yet.

Change-Id: Ib0a93544926c15893b1cce967db931f3b515422c
This commit is contained in:
Sebastian Leonhardt 2015-07-13 00:48:41 +02:00 committed by Gerrit Rockbox
parent 59928e6cf5
commit d552ff2648

View file

@ -1432,6 +1432,10 @@ static void chip8_keyboard(void)
case CHIP8_KEY9: chip8_virtual_keys[9] = 1; break;
case CHIP8_KEY9 | BUTTON_REL: chip8_virtual_keys[9] = 0; break;
#endif
#ifdef CHIP8_KEYA
case CHIP8_KEYA: chip8_virtual_keys[10] = 1; break;
case CHIP8_KEYA | BUTTON_REL: chip8_virtual_keys[10] = 0; break;
#endif
default:
if (rb->default_event_handler(button) == SYS_USB_CONNECTED)