diff options
author | tmk <nobody@nowhere> | 2014-11-24 15:36:53 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2014-11-24 15:36:53 +0900 |
commit | ed52ebb9870a26496b13a0565c1aaca8ded3465b (patch) | |
tree | cddad806a3408e05bc29310254c564ee94e3e710 /keyboard/lightpad/keymap.c | |
parent | eb90ed6238426db9367e294abfaefb5de07564f5 (diff) | |
parent | e2077cad45f1736e878e317c43bd94117c61b5e0 (diff) |
Merge branch 'merge_rn42'
Diffstat (limited to 'keyboard/lightpad/keymap.c')
-rw-r--r-- | keyboard/lightpad/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboard/lightpad/keymap.c b/keyboard/lightpad/keymap.c index 6d078230bb..2ca79a81b5 100644 --- a/keyboard/lightpad/keymap.c +++ b/keyboard/lightpad/keymap.c @@ -50,7 +50,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define FN_ACTIONS_SIZE (sizeof(fn_actions) / sizeof(fn_actions[0])) /* translates key to keycode */ -uint8_t keymap_key_to_keycode(uint8_t layer, key_t key) +uint8_t keymap_key_to_keycode(uint8_t layer, keypos_t key) { if (layer < KEYMAPS_SIZE) { return pgm_read_byte(&keymaps[(layer)][(key.row)][(key.col)]); |