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/dm9records | |
parent | a3e9b347ecbb55a58dfca4bb7a47e5abd21f6369 (diff) | |
download | qmk_firmware-c1297ceb972d45407cc1f518fd0527efda7ee796.tar.gz qmk_firmware-c1297ceb972d45407cc1f518fd0527efda7ee796.zip |
[Core] Remove matrix_is_modified() and debounce_is_active() (#15349)
Diffstat (limited to 'keyboards/dm9records')
-rw-r--r-- | keyboards/dm9records/ergoinu/matrix.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/keyboards/dm9records/ergoinu/matrix.c b/keyboards/dm9records/ergoinu/matrix.c index b1c58f88fe..87a5817313 100644 --- a/keyboards/dm9records/ergoinu/matrix.c +++ b/keyboards/dm9records/ergoinu/matrix.c @@ -223,12 +223,6 @@ void matrix_slave_scan(void) { } } -bool matrix_is_modified(void) -{ - if (debouncing) return false; - return true; -} - inline bool matrix_is_on(uint8_t row, uint8_t col) { |