forked from mirror/qmk_firmware
Refactor keyboard/keymap use of deprecated isLeftHand (#25891)
This commit is contained in:
@@ -52,7 +52,7 @@ void matrix_init_custom(void) {
|
||||
|
||||
ecsm_init(&ecsm_config);
|
||||
|
||||
thisHand = isLeftHand ? 0 : (ROWS_PER_HAND);
|
||||
thisHand = is_keyboard_left() ? 0 : (ROWS_PER_HAND);
|
||||
thatHand = ROWS_PER_HAND - thisHand;
|
||||
|
||||
split_post_init();
|
||||
|
||||
Reference in New Issue
Block a user