aboutsummaryrefslogtreecommitdiff
path: root/keyboards/hotdox/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/hotdox/matrix.c')
-rw-r--r--keyboards/hotdox/matrix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/hotdox/matrix.c b/keyboards/hotdox/matrix.c
index 605be3022..5d0b0f6dd 100644
--- a/keyboards/hotdox/matrix.c
+++ b/keyboards/hotdox/matrix.c
@@ -154,8 +154,8 @@ void matrix_print(void)
154{ 154{
155 print("\nr/c 0123456789ABCDEF\n"); 155 print("\nr/c 0123456789ABCDEF\n");
156 for (uint8_t row = 0; row < MATRIX_ROWS; row++) { 156 for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
157 phex(row); print(": "); 157 print_hex8(row); print(": ");
158 pbin_reverse16(matrix_get_row(row)); 158 print_bin_reverse16(matrix_get_row(row));
159 print("\n"); 159 print("\n");
160 } 160 }
161} 161}