diff options
| author | James Churchill <pelrun@gmail.com> | 2019-01-27 16:30:25 +1000 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2019-01-27 08:37:26 -0800 |
| commit | 6d2071ad6e9bdeb63126c00c4baea88d597cd7d7 (patch) | |
| tree | 78a5b24c7f801e6188b740d5e5db9429b68f8cee /keyboards/telophase | |
| parent | 4d9b11af14fd83c1e6b556165d41ce005abb4a84 (diff) | |
| download | qmk_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.c | 4 |
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) | |||
| 134 | inline | 134 | inline |
| 135 | bool matrix_is_on(uint8_t row, uint8_t col) | 135 | bool 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 | ||
| 140 | inline | 140 | inline |
