From 2573ed8c6bc3ce5dcccbd3fddc2e8fe5a0377eac Mon Sep 17 00:00:00 2001 From: xyzz <1065521+xyzz@users.noreply.github.com> Date: Tue, 29 Dec 2020 16:45:04 -0500 Subject: Remove MATRIX_IS_ON macro (#11330) * Remove MATRIX_IS_ON macro this macro is both incorrect and excessive given that macro_is_on() exists * Remove massdrop matrix.h --- tmk_core/common/matrix.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'tmk_core/common') diff --git a/tmk_core/common/matrix.h b/tmk_core/common/matrix.h index e36f014600..b570227a31 100644 --- a/tmk_core/common/matrix.h +++ b/tmk_core/common/matrix.h @@ -32,8 +32,6 @@ typedef uint32_t matrix_row_t; #define MATRIX_ROW_SHIFTER ((matrix_row_t)1) -#define MATRIX_IS_ON(row, col) (matrix_get_row(row) && (1 << col)) - #ifdef __cplusplus extern "C" { #endif -- cgit v1.2.3