From 391336a383af3464372e28e1030a92d37da02211 Mon Sep 17 00:00:00 2001 From: tomcw Date: Sat, 19 Jan 2019 10:18:16 +0000 Subject: [PATCH] Apple II,II+ keyboard: ignore up/down arrows. (Fixes #617) --- source/Keyboard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/Keyboard.cpp b/source/Keyboard.cpp index d2d81271..a3aa3e16 100644 --- a/source/Keyboard.cpp +++ b/source/Keyboard.cpp @@ -39,7 +39,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA static BYTE asciicode[2][10] = { // VK_LEFT/UP/RIGHT/DOWN/SELECT, VK_PRINT/EXECUTE/SNAPSHOT/INSERT/DELETE - {0x08,0x0D,0x15,0x2F,0x00, 0x00,0x00,0x00,0x00,0x00}, // Apple II + {0x08,0x00,0x15,0x00,0x00, 0x00,0x00,0x00,0x00,0x00}, // Apple II {0x08,0x0B,0x15,0x0A,0x00, 0x00,0x00,0x00,0x00,0x7F} // Apple //e }; // Convert PC arrow keys to Apple keycodes