From e338e074606dc5a49eacf6ff44eec8c508c0de44 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sun, 4 Jan 2015 14:13:33 +0000 Subject: [PATCH] trs80: correct size of shift kbd map so we don't waste memory --- Kernel/platform-trs80/devtty.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/platform-trs80/devtty.c b/Kernel/platform-trs80/devtty.c index 3b5c4d99..54b5c2bd 100644 --- a/Kernel/platform-trs80/devtty.c +++ b/Kernel/platform-trs80/devtty.c @@ -160,7 +160,7 @@ static uint8_t keyboard[8][8] = { { 0, 0, 0, 0, 0xF1, 0xF2, 0xF3, 0 } }; -static uint8_t shiftkeyboard[8][10] = { +static uint8_t shiftkeyboard[8][8] = { {'@', 'A', 'B', 'C', 'D', 'E', 'F', 'G' }, {'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O' }, {'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W' }, -- 2.34.1