summaryrefslogtreecommitdiffstats
path: root/keyboards/handwired/promethium/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/handwired/promethium/matrix.c')
-rw-r--r--keyboards/handwired/promethium/matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/handwired/promethium/matrix.c b/keyboards/handwired/promethium/matrix.c
index 00f2b8e9d..0b4456e28 100644
--- a/keyboards/handwired/promethium/matrix.c
+++ b/keyboards/handwired/promethium/matrix.c
@@ -167,7 +167,7 @@ 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