diff options
Diffstat (limited to 'keyboards/dc01/right/matrix.c')
-rw-r--r-- | keyboards/dc01/right/matrix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/dc01/right/matrix.c b/keyboards/dc01/right/matrix.c index 6ec3a3b723..8338453430 100644 --- a/keyboards/dc01/right/matrix.c +++ b/keyboards/dc01/right/matrix.c @@ -238,7 +238,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"); } |