Skip to content

Commit a38c11d

Browse files
committed
Fix DOM_VK_DOUBLE_QUOTE value being off by one (emscripten-core#21120)
1 parent fa47840 commit a38c11d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

system/include/emscripten/key_codes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
#define DOM_VK_WIN_OEM_FJ_ROYA 0x96
148148
#define DOM_VK_CIRCUMFLEX 0xA0
149149
#define DOM_VK_EXCLAMATION 0xA1
150-
#define DOM_VK_DOUBLE_QUOTE 0xA3
150+
#define DOM_VK_DOUBLE_QUOTE 0xA2
151151
#define DOM_VK_HASH 0xA3
152152
#define DOM_VK_DOLLAR 0xA4
153153
#define DOM_VK_PERCENT 0xA5

0 commit comments

Comments
 (0)