[Keyboard] Fix calls in handwired/jotanck (#7515)

The C file for this keyboard was calling `keyboard_pre_init_user`.  Which is wrong.

This fixes that behavior.
refactor_process_record_kb_user
Drashna Jaelre 6 years ago committed by Joel Challis
parent beb9f3ab71
commit d98ed28e7c
  1. 4
      keyboards/handwired/jotanck/jotanck.c

@ -4,7 +4,9 @@ void matrix_init_kb(void) {
matrix_init_user();
}
void keyboard_pre_init_user() {
void keyboard_pre_init_kb() {
setPinOutput(JOTANCK_LED1);
setPinOutput(JOTANCK_LED2);
keyboard_pre_init_user();
}

Loading…
Cancel
Save