summaryrefslogtreecommitdiff
path: root/keyboards/centromere/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/centromere/matrix.c')
-rw-r--r--keyboards/centromere/matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/centromere/matrix.c b/keyboards/centromere/matrix.c
index 5ca083b435..7256cd5cb5 100644
--- a/keyboards/centromere/matrix.c
+++ b/keyboards/centromere/matrix.c
@@ -137,7 +137,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");
}