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/handwired | |
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/handwired')
-rw-r--r-- | keyboards/handwired/promethium/matrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/handwired/promethium/matrix.c b/keyboards/handwired/promethium/matrix.c index 00f2b8e9dc..0b4456e289 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 |