aboutsummaryrefslogtreecommitdiff
path: root/keyboards/dichotomy/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/dichotomy/matrix.c')
-rwxr-xr-xkeyboards/dichotomy/matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/dichotomy/matrix.c b/keyboards/dichotomy/matrix.c
index 14c3f0d8e..f14c90128 100755
--- a/keyboards/dichotomy/matrix.c
+++ b/keyboards/dichotomy/matrix.c
@@ -198,7 +198,7 @@ uint8_t matrix_scan(void)
198inline 198inline
199bool matrix_is_on(uint8_t row, uint8_t col) 199bool matrix_is_on(uint8_t row, uint8_t col)
200{ 200{
201 return (matrix[row] & ((matrix_row_t)1<col)); 201 return (matrix[row] & ((matrix_row_t)1<<col));
202} 202}
203 203
204inline 204inline