summaryrefslogtreecommitdiffstats
path: root/keyboards/telophase
diff options
context:
space:
mode:
authorJames Churchill <pelrun@gmail.com>2019-01-27 07:30:25 +0100
committerDrashna Jaelre <drashna@live.com>2019-01-27 17:37:26 +0100
commit6d2071ad6e9bdeb63126c00c4baea88d597cd7d7 (patch)
tree78a5b24c7f801e6188b740d5e5db9429b68f8cee /keyboards/telophase
parent4d9b11af14fd83c1e6b556165d41ce005abb4a84 (diff)
downloadqmk_firmware-6d2071ad6e9bdeb63126c00c4baea88d597cd7d7.tar.gz
qmk_firmware-6d2071ad6e9bdeb63126c00c4baea88d597cd7d7.tar.xz
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)
if (timeout > 10000){
break;
}
- }
+ }
uart_data[i] = SERIAL_UART_DATA;
}
@@ -134,7 +134,7 @@ uint8_t matrix_scan(void)
inline
bool matrix_is_on(uint8_t row, uint8_t col)
{
- return (matrix[row] & ((matrix_row_t)1<col));
+ return (matrix[row] & ((matrix_row_t)1<<col));
}
inline