1
0
Fork 0

Fixed LED Function Calls

Fixed LED indicator function calls to match how the matrix init function
calls are formatted.
This commit is contained in:
IBNobody 2016-03-22 20:58:44 -05:00
parent ec62d9e85c
commit 10491ba21f
4 changed files with 22 additions and 34 deletions

View file

@ -38,8 +38,8 @@
{ KC_##KA0, KC_##KA1, KC_##KA2, KC_##KA3, KC_##KA4, KC_##KA5, KC_##KA6, KC_##KA7, } \
}
void * matrix_init_user(void);
void * matrix_scan_user(void);
void * led_set_user(uint8_t usb_led);
void matrix_init_user(void);
void matrix_scan_user(void);
void led_set_user(uint8_t usb_led);
#endif