aboutsummaryrefslogtreecommitdiff
path: root/keyboards/handwired/promethium/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/handwired/promethium/matrix.c')
-rw-r--r--keyboards/handwired/promethium/matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/handwired/promethium/matrix.c b/keyboards/handwired/promethium/matrix.c
index b4a4c6396..e3a41af28 100644
--- a/keyboards/handwired/promethium/matrix.c
+++ b/keyboards/handwired/promethium/matrix.c
@@ -180,7 +180,7 @@ void matrix_print(void)
180 print_matrix_header(); 180 print_matrix_header();
181 181
182 for (uint8_t row = 0; row < MATRIX_ROWS; row++) { 182 for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
183 phex(row); print(": "); 183 print_hex8(row); print(": ");
184 print_matrix_row(row); 184 print_matrix_row(row);
185 print("\n"); 185 print("\n");
186 } 186 }