summaryrefslogtreecommitdiff
path: root/hid
diff options
context:
space:
mode:
Diffstat (limited to 'hid')
-rw-r--r--hid/src/keymap.h.mako2
1 files changed, 1 insertions, 1 deletions
diff --git a/hid/src/keymap.h.mako b/hid/src/keymap.h.mako
index f8c85d79..6a965ca9 100644
--- a/hid/src/keymap.h.mako
+++ b/hid/src/keymap.h.mako
@@ -30,7 +30,7 @@
INLINE KeyboardKeycode keymap(uint8_t code) {
switch(code) {
% for km in sorted(keymap, key=operator.attrgetter("arduino_hid_key")):
- case ${km.kvmd_code}: return ${km.arduino_hid_key};
+ case ${km.arduino_hid_code}: return ${km.arduino_hid_key};
% endfor
default: return KEY_ERROR_UNDEFINED;
}