diff options
Diffstat (limited to 'src/mame/drivers/x1.cpp')
-rw-r--r-- | src/mame/drivers/x1.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/x1.cpp b/src/mame/drivers/x1.cpp index cde608c590a..c2dec9dfb9e 100644 --- a/src/mame/drivers/x1.cpp +++ b/src/mame/drivers/x1.cpp @@ -644,7 +644,7 @@ uint16_t x1_state::check_keyboard_press() if (scancode >= 0x2c && scancode <= 0x5f) scancode = kanatable[scancode - 0x2c][1]; } - + if (scancode >= 0x41 && scancode < 0x5a) scancode += 0x20; // lowercase } @@ -658,7 +658,7 @@ uint16_t x1_state::check_keyboard_press() scancode = kanatable[scancode - 0x2c][2]; } } - + if(scancode >= 0x31 && scancode < 0x3a) scancode -= 0x10; if(scancode == 0x30) |