aboutsummaryrefslogtreecommitdiff
path: root/keyboards/dichotomy/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/dichotomy/matrix.c')
-rwxr-xr-xkeyboards/dichotomy/matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/dichotomy/matrix.c b/keyboards/dichotomy/matrix.c
index 2400753cc..ed83bd452 100755
--- a/keyboards/dichotomy/matrix.c
+++ b/keyboards/dichotomy/matrix.c
@@ -210,7 +210,7 @@ void matrix_print(void)
210 print_matrix_header(); 210 print_matrix_header();
211 211
212 for (uint8_t row = 0; row < MATRIX_ROWS; row++) { 212 for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
213 phex(row); print(": "); 213 print_hex8(row); print(": ");
214 print_matrix_row(row); 214 print_matrix_row(row);
215 print("\n"); 215 print("\n");
216 } 216 }