aboutsummaryrefslogtreecommitdiff
path: root/keyboards/telophase/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/telophase/matrix.c')
-rw-r--r--keyboards/telophase/matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/telophase/matrix.c b/keyboards/telophase/matrix.c
index 8edfce62d..bc7a125e0 100644
--- a/keyboards/telophase/matrix.c
+++ b/keyboards/telophase/matrix.c
@@ -148,7 +148,7 @@ void matrix_print(void)
148 print_matrix_header(); 148 print_matrix_header();
149 149
150 for (uint8_t row = 0; row < MATRIX_ROWS; row++) { 150 for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
151 phex(row); print(": "); 151 print_hex8(row); print(": ");
152 print_matrix_row(row); 152 print_matrix_row(row);
153 print("\n"); 153 print("\n");
154 } 154 }