diff options
| author | tmk <nobody@nowhere> | 2014-11-24 15:14:52 +0900 |
|---|---|---|
| committer | tmk <nobody@nowhere> | 2014-11-24 15:14:52 +0900 |
| commit | e2077cad45f1736e878e317c43bd94117c61b5e0 (patch) | |
| tree | cddad806a3408e05bc29310254c564ee94e3e710 /keyboard/kitten_paw | |
| parent | a9963960459662c0775d8d2f1f5bbc738b7f4ddd (diff) | |
| download | qmk_firmware-e2077cad45f1736e878e317c43bd94117c61b5e0.tar.gz qmk_firmware-e2077cad45f1736e878e317c43bd94117c61b5e0.zip | |
Change key_t to keypos_t
Diffstat (limited to 'keyboard/kitten_paw')
| -rw-r--r-- | keyboard/kitten_paw/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboard/kitten_paw/keymap.c b/keyboard/kitten_paw/keymap.c index 23db421f9..e9ad9efe1 100644 --- a/keyboard/kitten_paw/keymap.c +++ b/keyboard/kitten_paw/keymap.c | |||
| @@ -80,7 +80,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 80 | #define FN_ACTIONS_SIZE (sizeof(fn_actions) / sizeof(fn_actions[0])) | 80 | #define FN_ACTIONS_SIZE (sizeof(fn_actions) / sizeof(fn_actions[0])) |
| 81 | 81 | ||
| 82 | /* translates key to keycode */ | 82 | /* translates key to keycode */ |
| 83 | uint8_t keymap_key_to_keycode(uint8_t layer, key_t key) | 83 | uint8_t keymap_key_to_keycode(uint8_t layer, keypos_t key) |
| 84 | { | 84 | { |
| 85 | if (layer < KEYMAPS_SIZE) { | 85 | if (layer < KEYMAPS_SIZE) { |
| 86 | return pgm_read_byte(&keymaps[(layer)][(key.col)][(key.row)]); | 86 | return pgm_read_byte(&keymaps[(layer)][(key.col)][(key.row)]); |
