From c2ca5b97ef5a85e6f5a7aaceaae0183cee2abe38 Mon Sep 17 00:00:00 2001 From: Alan Cox Date: Sun, 26 Apr 2015 22:42:16 +0100 Subject: [PATCH] mtx: fix the annoying bug that we have '<' and '>' swapped --- Kernel/platform-mtx/devtty.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Kernel/platform-mtx/devtty.c b/Kernel/platform-mtx/devtty.c index 7d85d628..04213b19 100644 --- a/Kernel/platform-mtx/devtty.c +++ b/Kernel/platform-mtx/devtty.c @@ -236,8 +236,8 @@ uint8_t shiftkeyboard[8][10] = { {'q', 'e', 't' , 'u', 'o', '`', 10, 8/*left*/, 127, 0 /* f6 */ }, { 0/*capsl*/, 's', 'f', 'h', 'k', '+', '}', 0/*right*/, 0, 0/*f7*/ }, { 'a', 'd', 'g', 'j', 'l', '*', 13, 12/*home*/, 0, 0 /*f3 */ }, - { 0/*shift*/, 'x', 'v', 'n', '>', '/', 0/*shift*/, 0/*down*/,0 , 0 /*f8 */}, - {'z', 'c', 'b', 'm', '<', '_', 0/*ins*/, 0/*cls*/, ' ', 0 /* f4 */ } + { 0/*shift*/, 'x', 'v', 'n', '<', '/', 0/*shift*/, 0/*down*/,0 , 0 /*f8 */}, + {'z', 'c', 'b', 'm', '>', '_', 0/*ins*/, 0/*cls*/, ' ', 0 /* f4 */ } }; static uint8_t capslock = 0; -- 2.34.1