diff options
| -rw-r--r-- | tmk_core/common/keyboard.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/tmk_core/common/keyboard.c b/tmk_core/common/keyboard.c index fa17ffca2..20b867285 100644 --- a/tmk_core/common/keyboard.c +++ b/tmk_core/common/keyboard.c | |||
| @@ -76,15 +76,8 @@ static matrix_row_t get_real_keys(uint8_t row, matrix_row_t rowdata){ | |||
| 76 | 76 | ||
| 77 | static inline bool countones(matrix_row_t row) | 77 | static inline bool countones(matrix_row_t row) |
| 78 | { | 78 | { |
| 79 | int count = 0; | 79 | row &= row-1; |
| 80 | while (row > 0){ | 80 | return row; |
| 81 | count += 1; | ||
| 82 | row &= row-1; | ||
| 83 | } | ||
| 84 | if (count > 1){ | ||
| 85 | return true; | ||
| 86 | } | ||
| 87 | return false; | ||
| 88 | } | 81 | } |
| 89 | 82 | ||
| 90 | static inline bool has_ghost_in_row(uint8_t row, matrix_row_t rowdata) | 83 | static inline bool has_ghost_in_row(uint8_t row, matrix_row_t rowdata) |
