From 36c22424a1cc3c766eeec4b6c83df7307eb43459 Mon Sep 17 00:00:00 2001 From: bwisn Date: Sun, 14 Nov 2021 08:08:57 +0100 Subject: [PATCH] annepro2: ioline --- keyboards/annepro2/matrix.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/keyboards/annepro2/matrix.c b/keyboards/annepro2/matrix.c index 5eb69b0c702..a1585e4ddf1 100644 --- a/keyboards/annepro2/matrix.c +++ b/keyboards/annepro2/matrix.c @@ -49,7 +49,7 @@ bool matrix_scan_custom(matrix_row_t current_matrix[]) { // get columns from ports matrix_row_t data = 0; for (int col = 0; col < MATRIX_COLS; ++col) { - ioline_t line = col_list[col]; + pin_t line = col_list[col]; uint16_t port = port_cache[HT32_PAL_IDX(PAL_PORT(line))]; data |= (((port & (1 << PAL_PAD(line))) ? 0 : 1) << col); }