aboutsummaryrefslogtreecommitdiff
path: root/keyboards/bpiphany/pegasushoof/2015/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/bpiphany/pegasushoof/2015/matrix.c')
-rw-r--r--keyboards/bpiphany/pegasushoof/2015/matrix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/bpiphany/pegasushoof/2015/matrix.c b/keyboards/bpiphany/pegasushoof/2015/matrix.c
index db0399354..42c5da3bc 100644
--- a/keyboards/bpiphany/pegasushoof/2015/matrix.c
+++ b/keyboards/bpiphany/pegasushoof/2015/matrix.c
@@ -93,8 +93,8 @@ void matrix_print(void)
93{ 93{
94 print("\nr/c 0123456789ABCDEF\n"); 94 print("\nr/c 0123456789ABCDEF\n");
95 for (uint8_t row = 0; row < matrix_rows(); row++) { 95 for (uint8_t row = 0; row < matrix_rows(); row++) {
96 phex(row); print(": "); 96 print_hex8(row); print(": ");
97 pbin_reverse16(matrix_get_row(row)); 97 print_bin_reverse16(matrix_get_row(row));
98 print("\n"); 98 print("\n");
99 } 99 }
100} 100}