summaryrefslogtreecommitdiff
path: root/keyboard/gh60
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2014-11-24 15:14:52 +0900
committertmk <nobody@nowhere>2014-11-24 15:14:52 +0900
commite2077cad45f1736e878e317c43bd94117c61b5e0 (patch)
treecddad806a3408e05bc29310254c564ee94e3e710 /keyboard/gh60
parenta9963960459662c0775d8d2f1f5bbc738b7f4ddd (diff)
Change key_t to keypos_t
Diffstat (limited to 'keyboard/gh60')
-rw-r--r--keyboard/gh60/keymap_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboard/gh60/keymap_common.c b/keyboard/gh60/keymap_common.c
index 7b6379f6b6..fdb1769e1c 100644
--- a/keyboard/gh60/keymap_common.c
+++ b/keyboard/gh60/keymap_common.c
@@ -18,7 +18,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
/* 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)
{
return pgm_read_byte(&keymaps[(layer)][(key.row)][(key.col)]);
}