diff options
author | tmk <hasu@tmk-kbd.com> | 2015-10-15 11:48:14 +0900 |
---|---|---|
committer | tmk <hasu@tmk-kbd.com> | 2015-10-15 11:48:14 +0900 |
commit | 6fe4af82fa21cbeb8e22c9f0630e5a908963cc13 (patch) | |
tree | a4048c2bddc77f3bd29535a50b2087f646a5119b | |
parent | 5ce9bf8353568b341b79b3cea676ea62a7d40442 (diff) | |
download | qmk_firmware-6fe4af82fa21cbeb8e22c9f0630e5a908963cc13.tar.gz qmk_firmware-6fe4af82fa21cbeb8e22c9f0630e5a908963cc13.zip |
Fix port setting of alps64/matrix.c
-rw-r--r-- | keyboard/alps64/matrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboard/alps64/matrix.c b/keyboard/alps64/matrix.c index aa991e0aec..5638d7f69d 100644 --- a/keyboard/alps64/matrix.c +++ b/keyboard/alps64/matrix.c @@ -157,7 +157,7 @@ static void unselect_rows(void) DDRD &= ~0b01111111; PORTD &= ~0b01111111; DDRC &= ~0b00000100; - PORTD &= ~0b00000100; + PORTC &= ~0b00000100; } static void select_row(uint8_t row) |