summaryrefslogtreecommitdiff
path: root/keyboards/hid_liber
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/hid_liber')
-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 05554a24c8..ff59a17153 100755
--- a/keyboards/hid_liber/matrix.c
+++ b/keyboards/hid_liber/matrix.c
@@ -246,8 +246,8 @@ void matrix_print(void)
{
print("\nr/c 01234567\n");
for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
- phex(row); print(": ");
- pbin_reverse(matrix_get_row(row));
+ print_hex8(row); print(": ");
+ print_bin_reverse8(matrix_get_row(row));
print("\n");
}
}