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/comet46 | |
| 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/comet46')
| -rw-r--r-- | keyboards/comet46/matrix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/comet46/matrix.c b/keyboards/comet46/matrix.c index 66d29f8b3..dc38ba74f 100644 --- a/keyboards/comet46/matrix.c +++ b/keyboards/comet46/matrix.c | |||
| @@ -102,7 +102,7 @@ uint8_t matrix_scan(void) | |||
| 102 | if (timeout > 10000){ | 102 | if (timeout > 10000){ |
| 103 | break; | 103 | break; |
| 104 | } | 104 | } |
| 105 | } | 105 | } |
| 106 | uart_data[i] = SERIAL_UART_DATA; | 106 | uart_data[i] = SERIAL_UART_DATA; |
| 107 | } | 107 | } |
| 108 | 108 | ||
| @@ -124,7 +124,7 @@ uint8_t matrix_scan(void) | |||
| 124 | inline | 124 | inline |
| 125 | bool matrix_is_on(uint8_t row, uint8_t col) | 125 | bool matrix_is_on(uint8_t row, uint8_t col) |
| 126 | { | 126 | { |
| 127 | return (matrix[row] & ((matrix_row_t)1<col)); | 127 | return (matrix[row] & ((matrix_row_t)1<<col)); |
| 128 | } | 128 | } |
| 129 | 129 | ||
| 130 | inline | 130 | inline |
