From 6125ef9d2135f4f4d0aafbf3c2489f83dc96f6af Mon Sep 17 00:00:00 2001 From: tmk Date: Sat, 6 Nov 2021 22:15:49 +0900 Subject: [PATCH] ibmpc_usb: Change mapping of Televideo DEC --- converter/ibmpc_usb/ibmpc_usb.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/converter/ibmpc_usb/ibmpc_usb.cpp b/converter/ibmpc_usb/ibmpc_usb.cpp index f9fc9202..ab875aa1 100644 --- a/converter/ibmpc_usb/ibmpc_usb.cpp +++ b/converter/ibmpc_usb/ibmpc_usb.cpp @@ -1152,8 +1152,8 @@ uint8_t IBMPCConverter::translate_televideo_dec_cs3(uint8_t code) { case 0x91: return 0x01; // LGUI case 0x92: return 0x09; // RGUI case 0x77: return 0x58; // RCTRL - case 0x57: return 0x66; // Backspace - case 0x66: return 0x5D; // JPY + case 0x57: return 0x5C; // Backslash + case 0x5C: return 0x53; // Non-US Hash case 0x7c: return 0x68; // Kp Comma } return code;