diff options
Diffstat (limited to 'keyboards/converter/xt_usb/matrix.c')
-rw-r--r-- | keyboards/converter/xt_usb/matrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/converter/xt_usb/matrix.c b/keyboards/converter/xt_usb/matrix.c index d48f1a887f..d75f077ce9 100644 --- a/keyboards/converter/xt_usb/matrix.c +++ b/keyboards/converter/xt_usb/matrix.c @@ -233,7 +233,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"); } |