1
0

Refactor core use of deprecated isLeftHand (#25888)

This commit is contained in:
Joel Challis
2025-12-21 20:52:55 +00:00
committed by GitHub
parent f82d4d8680
commit c1161a7a32
10 changed files with 33 additions and 10 deletions

View File

@@ -144,7 +144,7 @@ __attribute__((weak)) void matrix_slave_scan_user(void) {}
__attribute__((weak)) void matrix_init(void) {
#ifdef SPLIT_KEYBOARD
thisHand = isLeftHand ? 0 : (MATRIX_ROWS_PER_HAND);
thisHand = is_keyboard_left() ? 0 : (MATRIX_ROWS_PER_HAND);
thatHand = MATRIX_ROWS_PER_HAND - thisHand;
#endif