[USETUP] Partial revert of 8b94515b for the ESCAPE key in the UpgradeRepairPage() screen.

The AsciiChar of the ESCAPE key should be 0x1B instead of zero; however
this is not the case due to the hacked keyboard layout currently being
used. This will be fixed later ...
This commit is contained in:
Hermès Bélusca-Maïto 2021-01-04 16:11:40 +01:00
parent 06bff99edb
commit 68182b2a52
No known key found for this signature in database
GPG key ID: 3B2539C65E7B93D0

View file

@ -1050,8 +1050,26 @@ UpgradeRepairPage(PINPUT_RECORD Ir)
RedrawGenericList(&ListUi);
break;
}
#if 1
/* TODO: Temporarily kept until correct keyboard layout is in place.
* (Actual AsciiChar of ESCAPE should be 0x1B instead of 0.)
* Addendum to commit 8b94515b.
*/
case VK_ESCAPE: /* ESC */
{
RestoreGenericListUiState(&ListUi);
// return nextPage; // prevPage;
// return INSTALL_INTRO_PAGE;
return DEVICE_SETTINGS_PAGE;
// return SCSI_CONTROLLER_PAGE;
}
#endif
}
}
#if 0
/* TODO: Restore this once correct keyboard layout is in place. */
else if (Ir->Event.KeyEvent.wVirtualKeyCode == VK_ESCAPE) /* ESC */
{
RestoreGenericListUiState(&ListUi);
@ -1061,6 +1079,7 @@ UpgradeRepairPage(PINPUT_RECORD Ir)
return DEVICE_SETTINGS_PAGE;
// return SCSI_CONTROLLER_PAGE;
}
#endif
else
{
// switch (toupper(Ir->Event.KeyEvent.uChar.AsciiChar))