aboutsummaryrefslogtreecommitdiff
path: root/keyboards/40percentclub
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2021-02-06 16:56:13 +0000
committerGitHub <noreply@github.com>2021-02-06 16:56:13 +0000
commitf5a38b95c12d100ab74acfd603502c66e0d0911d (patch)
treed752c81b42539959c3b69ff70d7c00c0cb666120 /keyboards/40percentclub
parentc50ecb4bb053a98dc8541f29e3a98f149340980a (diff)
downloadqmk_firmware-f5a38b95c12d100ab74acfd603502c66e0d0911d.tar.gz
qmk_firmware-f5a38b95c12d100ab74acfd603502c66e0d0911d.zip
Remove legacy print backward compatiblitly (#11805)
* Remove legacy print backward compatiblitly * Remove legacy print backward compatiblitly - core * revert comment changes
Diffstat (limited to 'keyboards/40percentclub')
-rw-r--r--keyboards/40percentclub/ut47/matrix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/40percentclub/ut47/matrix.c b/keyboards/40percentclub/ut47/matrix.c
index 921bc9ed5..e47c7f8e1 100644
--- a/keyboards/40percentclub/ut47/matrix.c
+++ b/keyboards/40percentclub/ut47/matrix.c
@@ -126,8 +126,8 @@ void matrix_print(void)
126{ 126{
127 print("\nr/c 0123456789ABCDEF\n"); 127 print("\nr/c 0123456789ABCDEF\n");
128 for (uint8_t row = 0; row < MATRIX_ROWS; row++) { 128 for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
129 phex(row); print(": "); 129 print_hex8(row); print(": ");
130 pbin_reverse16(matrix_get_row(row)); 130 print_bin_reverse16(matrix_get_row(row));
131 print("\n"); 131 print("\n");
132 } 132 }
133} 133}