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
This commit is contained in:
xyzz
2020-12-29 16:45:04 -05:00
committed by Drashna Jael're
parent 67b2ddbbc6
commit b91c12246d

View File

@@ -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