Fix bit shift which is beyond int size(16bit)
This commit is contained in:
parent
9874bf168a
commit
ff1561b644
@ -86,7 +86,7 @@ void keyboard_task(void)
|
|||||||
if (matrix_change & ((matrix_row_t)1<<c)) {
|
if (matrix_change & ((matrix_row_t)1<<c)) {
|
||||||
action_exec((keyevent_t){
|
action_exec((keyevent_t){
|
||||||
.key = (key_t){ .row = r, .col = c },
|
.key = (key_t){ .row = r, .col = c },
|
||||||
.pressed = (matrix_row & (1<<c)),
|
.pressed = (matrix_row & ((matrix_row_t)1<<c)),
|
||||||
.time = (timer_read() | 1) /* time should not be 0 */
|
.time = (timer_read() | 1) /* time should not be 0 */
|
||||||
});
|
});
|
||||||
// record a processed key
|
// record a processed key
|
||||||
|
Reference in New Issue
Block a user