Преглед изворни кода

Fix for new API(key_t to keypos_t)

ledmap
tmk пре 10 година
родитељ
комит
ea60dae6e6
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1
    1
      keyboard/hhkb/keymap_common.c

+ 1
- 1
keyboard/hhkb/keymap_common.c Прегледај датотеку

@@ -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)]);
}