summaryrefslogtreecommitdiff
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 605be30220..5d0b0f6dd5 100644
--- a/keyboards/hotdox/matrix.c
+++ b/keyboards/hotdox/matrix.c
@@ -154,8 +154,8 @@ void matrix_print(void)
{
print("\nr/c 0123456789ABCDEF\n");
for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
- phex(row); print(": ");
- pbin_reverse16(matrix_get_row(row));
+ print_hex8(row); print(": ");
+ print_bin_reverse16(matrix_get_row(row));
print("\n");
}
}