~ruther/qmk_firmware

ea60dae6e69bd3b120f2f702aeea691cb6d3d790 — tmk 11 years ago 54aee16
Fix for new API(key_t to keypos_t)
1 files changed, 1 insertions(+), 1 deletions(-)

M keyboard/hhkb/keymap_common.c
M keyboard/hhkb/keymap_common.c => keyboard/hhkb/keymap_common.c +1 -1
@@ 21,7 21,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)]);
}