aboutsummaryrefslogtreecommitdiff
path: root/keyboards/telophase
diff options
context:
space:
mode:
authorJames Churchill <pelrun@gmail.com>2019-01-27 16:30:25 +1000
committerDrashna Jaelre <drashna@live.com>2019-01-27 08:37:26 -0800
commit6d2071ad6e9bdeb63126c00c4baea88d597cd7d7 (patch)
tree78a5b24c7f801e6188b740d5e5db9429b68f8cee /keyboards/telophase
parent4d9b11af14fd83c1e6b556165d41ce005abb4a84 (diff)
downloadqmk_firmware-6d2071ad6e9bdeb63126c00c4baea88d597cd7d7.tar.gz
qmk_firmware-6d2071ad6e9bdeb63126c00c4baea88d597cd7d7.zip
Fix `1<col` instead of `1<<col` typo in matrix_is_on()
Diffstat (limited to 'keyboards/telophase')
-rw-r--r--keyboards/telophase/matrix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/telophase/matrix.c b/keyboards/telophase/matrix.c
index b3544453e..c332eba55 100644
--- a/keyboards/telophase/matrix.c
+++ b/keyboards/telophase/matrix.c
@@ -112,7 +112,7 @@ uint8_t matrix_scan(void)
112 if (timeout > 10000){ 112 if (timeout > 10000){
113 break; 113 break;
114 } 114 }
115 } 115 }
116 uart_data[i] = SERIAL_UART_DATA; 116 uart_data[i] = SERIAL_UART_DATA;
117 } 117 }
118 118
@@ -134,7 +134,7 @@ uint8_t matrix_scan(void)
134inline 134inline
135bool matrix_is_on(uint8_t row, uint8_t col) 135bool matrix_is_on(uint8_t row, uint8_t col)
136{ 136{
137 return (matrix[row] & ((matrix_row_t)1<col)); 137 return (matrix[row] & ((matrix_row_t)1<<col));
138} 138}
139 139
140inline 140inline