From: Alan Cox Date: Sun, 4 Jan 2015 14:13:33 +0000 (+0000) Subject: trs80: correct size of shift kbd map so we don't waste memory X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=e338e074606dc5a49eacf6ff44eec8c508c0de44;p=FUZIX.git trs80: correct size of shift kbd map so we don't waste memory --- 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' },