Migrate led_update_kb implementations to DD (#23985)

This commit is contained in:
Joel Challis 2024-06-25 03:25:05 +01:00 committed by GitHub
parent 7e8e52018f
commit ff3f958547

View file

@ -69,7 +69,7 @@ void led_keypress_update(pin_t led_pin, uint16_t keycode, keyrecord_t *record) {
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
// Update LED state
led_keypress_update(LED, keycode, record);
led_keypress_update(LED_CAPS_LOCK_PIN, keycode, record);
return true;
}