summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2023-04-07 17:44:39 +0200
committerYuri Sizov <yuris@humnom.net>2023-04-07 17:44:39 +0200
commitba5335f3fb6df952ba46719f0bde6386d68d32af (patch)
treeaa40c9b53ef4156de9e80d87a5154955067e2a91 /platform
parent7c62d1106e882745e65f58511a0287a6b8cec896 (diff)
[Web] Fix keycode/physical keycode mixed up.
(cherry picked from commit 744bf604bf48c853f927154da5f2243fa9709dd3)
Diffstat (limited to 'platform')
-rw-r--r--platform/web/dom_keys.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/web/dom_keys.inc b/platform/web/dom_keys.inc
index ae3b2fc1a5..cd94b779c0 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; \
}