summaryrefslogtreecommitdiffstats
path: root/keyboard/gh60
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2013-02-13 03:47:19 +0100
committertmk <nobody@nowhere>2013-02-13 03:47:19 +0100
commit9bc82bf61c342ca96e6f942b169b7c88b6bf95cf (patch)
tree5ef3904f124fdb75eb69e2e0418a3c120f02ffb8 /keyboard/gh60
parent7054203e16af627a921b503a9508ce789913471d (diff)
downloadqmk_firmware-9bc82bf61c342ca96e6f942b169b7c88b6bf95cf.tar.gz
qmk_firmware-9bc82bf61c342ca96e6f942b169b7c88b6bf95cf.tar.xz
Change action API
Diffstat (limited to 'keyboard/gh60')
-rw-r--r--keyboard/gh60/keymap.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/keyboard/gh60/keymap.c b/keyboard/gh60/keymap.c
index d2da50529..9cef2137b 100644
--- a/keyboard/gh60/keymap.c
+++ b/keyboard/gh60/keymap.c
@@ -181,11 +181,8 @@ action_t keymap_fn_to_action(uint8_t keycode)
}
/* convert key to action */
-action_t keymap_get_action(uint8_t layer, uint8_t row, uint8_t col)
+action_t action_for_key(uint8_t layer, key_t key)
{
- key_t key;
- key.pos.row = row;
- key.pos.col = col;
uint8_t keycode = keymap_key_to_keycode(layer, key);
switch (keycode) {
case KC_FN0 ... KC_FN31: