aboutsummaryrefslogtreecommitdiff
path: root/keyboards/hid_liber/matrix.c
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/hid_liber/matrix.c')
-rwxr-xr-xkeyboards/hid_liber/matrix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/hid_liber/matrix.c b/keyboards/hid_liber/matrix.c
index 05554a24c..ff59a1715 100755
--- a/keyboards/hid_liber/matrix.c
+++ b/keyboards/hid_liber/matrix.c
@@ -246,8 +246,8 @@ void matrix_print(void)
246{ 246{
247 print("\nr/c 01234567\n"); 247 print("\nr/c 01234567\n");
248 for (uint8_t row = 0; row < MATRIX_ROWS; row++) { 248 for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
249 phex(row); print(": "); 249 print_hex8(row); print(": ");
250 pbin_reverse(matrix_get_row(row)); 250 print_bin_reverse8(matrix_get_row(row));
251 print("\n"); 251 print("\n");
252 } 252 }
253} 253}