Keyboard: Shift+backspace should generate backspace character.

This commit is contained in:
Andreas Kling 2019-01-25 15:34:02 +01:00
parent 8fa7d96f50
commit d059e684a2
Notes: sideshowbarker 2024-07-19 15:56:55 +09:00

View file

@ -26,7 +26,7 @@ static char map[0x80] =
static char shift_map[0x80] =
{
0, '\033', '!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '_', '+', 0, 0,
0, '\033', '!', '@', '#', '$', '%', '^', '&', '*', '(', ')', '_', '+', 0x08, 0,
'Q', 'W', 'E', 'R', 'T', 'Y', 'U', 'I', 'O', 'P', '{', '}', '\n', 0,
'A', 'S', 'D', 'F', 'G', 'H', 'J', 'K', 'L', ':', '"', '~', 0, '|',
'Z', 'X', 'C', 'V', 'B', 'N', 'M', '<', '>', '?',