From a60ac0ca731ad4ee7b6a9d12d7fbd480eca11489 Mon Sep 17 00:00:00 2001 From: EnderIce2 Date: Thu, 29 Feb 2024 03:50:16 +0200 Subject: [PATCH] Fix KEY_SLASH character --- core/driver/scancode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/driver/scancode.cpp b/core/driver/scancode.cpp index c87eeab..5cfd730 100644 --- a/core/driver/scancode.cpp +++ b/core/driver/scancode.cpp @@ -241,7 +241,7 @@ static char ScanCodeConversionTableUpper[] = { [KEY_BACKSLASH] = '|', [KEY_COMMA] = '<', [KEY_PERIOD] = '>', - [KEY_SLASH] = '/', + [KEY_SLASH] = '?', [KEY_SPACE] = ' ', [KEY_CAPS_LOCK] = 0x00, [KEY_NUM_LOCK] = 0x00,