Also suppress any and all keyboard input while the keyboard is in reset.

This commit is contained in:
OBattler
2025-05-10 14:27:36 +02:00
parent bc0b56d6ba
commit 8577e0b532

View File

@@ -240,6 +240,9 @@ key_process(uint16_t scan, int down)
void
keyboard_input(int down, uint16_t scan)
{
if (kbd_in_reset)
return;
/* Special case for E1 1D, translate it to 0100 - special case. */
if ((scan >> 8) == 0xe1) {
if ((scan & 0xff) == 0x1d)