From 744bf604bf48c853f927154da5f2243fa9709dd3 Mon Sep 17 00:00:00 2001 From: bruvzg <7645683+bruvzg@users.noreply.github.com> Date: Thu, 6 Apr 2023 09:40:59 +0300 Subject: [PATCH] [Web] Fix keycode/physical keycode mixed up. --- platform/web/dom_keys.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platform/web/dom_keys.inc b/platform/web/dom_keys.inc index ae3b2fc1a562..cd94b779c094 100644 --- a/platform/web/dom_keys.inc +++ b/platform/web/dom_keys.inc @@ -33,7 +33,7 @@ // See https://w3c.github.io/uievents-code/#code-value-tables Key dom_code2godot_scancode(EM_UTF8 const p_code[32], EM_UTF8 const p_key[32], bool p_physical) { #define DOM2GODOT(p_str, p_godot_code) \ - if (memcmp((const void *)p_str, (void *)(p_physical ? p_key : p_code), strlen(p_str) + 1) == 0) { \ + if (memcmp((const void *)p_str, (void *)(p_physical ? p_code : p_key), strlen(p_str) + 1) == 0) { \ return Key::p_godot_code; \ }