summaryrefslogtreecommitdiff
path: root/tmk_core/common
diff options
context:
space:
mode:
authorxyzz <1065521+xyzz@users.noreply.github.com>2020-12-29 16:45:04 -0500
committerDrashna Jael're <drashna@live.com>2021-01-12 22:46:11 -0800
commitb91c12246d413811effd8ed4594e16a3b7b58bbc (patch)
tree7fdcf0847c9d92ad685330386f36efb864c17b1c /tmk_core/common
parent67b2ddbbc69d9df8adbd0491fd763567b77de8be (diff)
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
Diffstat (limited to 'tmk_core/common')
-rw-r--r--tmk_core/common/matrix.h2
1 files changed, 0 insertions, 2 deletions
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