diff options
| author | Joel Challis <git@zvecr.com> | 2021-02-06 16:56:13 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-02-06 16:56:13 +0000 |
| commit | f5a38b95c12d100ab74acfd603502c66e0d0911d (patch) | |
| tree | d752c81b42539959c3b69ff70d7c00c0cb666120 /keyboards/mitosis | |
| parent | c50ecb4bb053a98dc8541f29e3a98f149340980a (diff) | |
Remove legacy print backward compatiblitly (#11805)
* Remove legacy print backward compatiblitly
* Remove legacy print backward compatiblitly - core
* revert comment changes
Diffstat (limited to 'keyboards/mitosis')
| -rw-r--r-- | keyboards/mitosis/matrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/mitosis/matrix.c b/keyboards/mitosis/matrix.c index 717a810678..71c372a3ce 100644 --- a/keyboards/mitosis/matrix.c +++ b/keyboards/mitosis/matrix.c @@ -139,7 +139,7 @@ void matrix_print(void) print_matrix_header(); for (uint8_t row = 0; row < MATRIX_ROWS; row++) { - phex(row); print(": "); + print_hex8(row); print(": "); print_matrix_row(row); print("\n"); } |
