allow alt-l or menu to bring up the recovery menu

This commit is contained in:
Koushik K. Dutta 2010-02-08 15:05:21 -08:00
parent 89d385c4d9
commit 0d4ff2fcc6

View File

@ -30,7 +30,10 @@ char* MENU_ITEMS[] = { "reboot system now",
NULL };
int device_toggle_display(volatile char* key_pressed, int key_code) {
return key_code == KEY_HOME;
int alt = key_pressed[KEY_LEFTALT] || key_pressed[KEY_RIGHTALT];
if (alt && key_code == KEY_L)
return 1;
return key_code == KEY_HOME || key_code == KEY_MENU;
}
int device_reboot_now(volatile char* key_pressed, int key_code) {