run the _user functions whenever we run the _kb functions

This commit is contained in:
skullY 2020-02-29 10:31:34 -08:00
parent 69b2a82be6
commit 2d64301cd9
2 changed files with 7 additions and 3 deletions

View file

@ -18,9 +18,9 @@ extern const matrix_row_t matrix_mask[];
// user-defined overridable functions
__attribute__((weak)) void matrix_init_kb(void) { matrix_init_user(); }
__attribute__((weak)) void matrix_init_kb(void) {}
__attribute__((weak)) void matrix_scan_kb(void) { matrix_scan_user(); }
__attribute__((weak)) void matrix_scan_kb(void) {}
__attribute__((weak)) void matrix_init_user(void) {}