summaryrefslogtreecommitdiffstats
path: root/keyboard/gh60
diff options
context:
space:
mode:
authortmk <nobody@nowhere>2013-02-13 04:16:24 +0100
committertmk <nobody@nowhere>2013-02-13 04:16:24 +0100
commitc4421f585b085d3eef5e468ff1defcbc3b4ec8d3 (patch)
tree335730a0308cdb2e2ec094fe08ac63ee29ce4f80 /keyboard/gh60
parent9bc82bf61c342ca96e6f942b169b7c88b6bf95cf (diff)
downloadqmk_firmware-c4421f585b085d3eef5e468ff1defcbc3b4ec8d3.tar.gz
qmk_firmware-c4421f585b085d3eef5e468ff1defcbc3b4ec8d3.tar.xz
Change struct key_t
Diffstat (limited to 'keyboard/gh60')
-rw-r--r--keyboard/gh60/keymap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboard/gh60/keymap.c b/keyboard/gh60/keymap.c
index 9cef2137b..a17c11fc3 100644
--- a/keyboard/gh60/keymap.c
+++ b/keyboard/gh60/keymap.c
@@ -165,7 +165,7 @@ static const uint16_t PROGMEM fn_actions[] = {
/* translates key to keycode */
uint8_t keymap_key_to_keycode(uint8_t layer, key_t key)
{
- return pgm_read_byte(&keymaps[(layer)][(key.pos.row)][(key.pos.col)]);
+ return pgm_read_byte(&keymaps[(layer)][(key.row)][(key.col)]);
}
/* translates Fn index to action */