diff options
author | Stefan Kerkmann <karlk90@pm.me> | 2021-11-29 17:22:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-29 08:22:10 -0800 |
commit | c1297ceb972d45407cc1f518fd0527efda7ee796 (patch) | |
tree | 6ef5fb395de5062f48089d948faea62d8cdf64ce /keyboards/ai03/orbit/matrix.c | |
parent | a3e9b347ecbb55a58dfca4bb7a47e5abd21f6369 (diff) |
[Core] Remove matrix_is_modified() and debounce_is_active() (#15349)
Diffstat (limited to 'keyboards/ai03/orbit/matrix.c')
-rw-r--r-- | keyboards/ai03/orbit/matrix.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/keyboards/ai03/orbit/matrix.c b/keyboards/ai03/orbit/matrix.c index b8e3296686..024233524c 100644 --- a/keyboards/ai03/orbit/matrix.c +++ b/keyboards/ai03/orbit/matrix.c @@ -83,11 +83,6 @@ inline uint8_t matrix_rows(void) { return MATRIX_ROWS; } inline uint8_t matrix_cols(void) { return MATRIX_COLS; } -bool matrix_is_modified(void) { - if (debounce_active()) return false; - return true; -} - inline bool matrix_is_on(uint8_t row, uint8_t col) { return (matrix[row] & ((matrix_row_t)1 << col)); } inline matrix_row_t matrix_get_row(uint8_t row) { return matrix[row]; } |