From ad3ec85a1d5f196b8ea3dbce0858c99a0480e6d6 Mon Sep 17 00:00:00 2001 From: Kelvin Sherlock Date: Wed, 16 Jan 2019 18:22:36 -0500 Subject: [PATCH] shift-keypad . was generating a keypad comma. very strange. --- src/adb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/adb.h b/src/adb.h index 2c2e7c7..d518157 100644 --- a/src/adb.h +++ b/src/adb.h @@ -82,7 +82,7 @@ const int a2_key_to_ascii[][4] = { { 0x3f, -1, -1, -1 }, { 0x40, -1, -1, -1 }, - { 0x41, 0x102e, 0x102c, -1 }, /* keypad . */ + { 0x41, 0x102e, 0x102e, -1 }, /* keypad . */ { 0x42, -1, -1, -1 }, { 0x43, 0x102a, 0x102a, -1 }, /* keypad * */ { 0x44, -1, -1, -1 },