diff options
author | tmk <nobody@nowhere> | 2014-06-17 00:57:59 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2014-07-30 14:07:43 +0900 |
commit | c67ae2a6b546c822759352586c14cd9dccbbe0ff (patch) | |
tree | ab77175c64bfce74d2662260b9cdb2af8d8a7efd /common/bootmagic.c | |
parent | 04fe78ee0a7fe9baed39f021799a3dbb24ebeb36 (diff) |
Port action_* to mbed
Diffstat (limited to 'common/bootmagic.c')
-rw-r--r-- | common/bootmagic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/bootmagic.c b/common/bootmagic.c index 642d5face4..b002a58562 100644 --- a/common/bootmagic.c +++ b/common/bootmagic.c @@ -111,7 +111,7 @@ static bool scan_keycode(uint8_t keycode) matrix_row_t matrix_row = matrix_get_row(r); for (uint8_t c = 0; c < MATRIX_COLS; c++) { if (matrix_row & ((matrix_row_t)1<<c)) { - if (keycode == keymap_key_to_keycode(0, (key_t){ .row = r, .col = c })) { + if (keycode == keymap_key_to_keycode(0, (keypos_t){ .row = r, .col = c })) { return true; } } |