瀏覽代碼

Change key_t to keypos_t

lr94
Kai Ryu 9 年之前
父節點
當前提交
afe956bcc1
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      keyboard/ghpad/keymap_common.c

+ 1
- 1
keyboard/ghpad/keymap_common.c 查看文件

@@ -17,7 +17,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "keymap_common.h"

/* 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)
{
#ifndef KEYMAP_IN_EEPROM_ENABLE
return pgm_read_byte(&keymaps[(layer)][(key.row)][(key.col)]);