summaryrefslogtreecommitdiffstats
path: root/keyboards/telophase
diff options
context:
space:
mode:
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