summaryrefslogtreecommitdiff
path: root/tmk_core/common/keymap.c
diff options
context:
space:
mode:
authorJack Humbert <jack.humb@gmail.com>2015-10-27 19:10:36 -0400
committerJack Humbert <jack.humb@gmail.com>2015-10-27 19:10:36 -0400
commite98c501a614385132a2e2a61a1242f12bab89969 (patch)
treef1f302d4ea2b6661f503b76782323545691ee87a /tmk_core/common/keymap.c
parentd311fd8d1a0af3b767d26b520d399bf0db22f058 (diff)
almost there - keymap_key_to_keycode returning 16bits, maybeunicode
Diffstat (limited to 'tmk_core/common/keymap.c')
-rw-r--r--tmk_core/common/keymap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tmk_core/common/keymap.c b/tmk_core/common/keymap.c
index 11f4aa8aaa..0631b15ff8 100644
--- a/tmk_core/common/keymap.c
+++ b/tmk_core/common/keymap.c
@@ -29,7 +29,7 @@ static action_t keycode_to_action(uint8_t keycode);
/* converts key to action */
__attribute__ ((weak))
-action_t action_for_key(uint8_t layer, keypos_t key)
+action_t action_for_key(keyrecord_t *record, uint8_t layer, keypos_t key)
{
uint8_t keycode = keymap_key_to_keycode(layer, key);
switch (keycode) {