aboutsummaryrefslogtreecommitdiff
path: root/keyboards/chimera_ls/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/chimera_ls/matrix.c')
-rw-r--r--keyboards/chimera_ls/matrix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/chimera_ls/matrix.c b/keyboards/chimera_ls/matrix.c
index 665d0d357..72fe44137 100644
--- a/keyboards/chimera_ls/matrix.c
+++ b/keyboards/chimera_ls/matrix.c
@@ -116,7 +116,7 @@ uint8_t matrix_scan(void)
116 if (timeout > 10000){ 116 if (timeout > 10000){
117 break; 117 break;
118 } 118 }
119 } 119 }
120 uart_data[i] = SERIAL_UART_DATA; 120 uart_data[i] = SERIAL_UART_DATA;
121 } 121 }
122 122
@@ -138,7 +138,7 @@ uint8_t matrix_scan(void)
138inline 138inline
139bool matrix_is_on(uint8_t row, uint8_t col) 139bool matrix_is_on(uint8_t row, uint8_t col)
140{ 140{
141 return (matrix[row] & ((matrix_row_t)1<col)); 141 return (matrix[row] & ((matrix_row_t)1<<col));
142} 142}
143 143
144inline 144inline