mirror of
https://github.com/openstenoproject/qmk
synced 2024-11-10 02:30:07 +00:00
Fix layer mask size for RGBLIGHT_LAYER_BLINK (#9260)
This commit is contained in:
parent
0fee906e09
commit
563d5919b3
1 changed files with 3 additions and 3 deletions
|
@ -672,9 +672,9 @@ static void rgblight_layers_write(void) {
|
||||||
}
|
}
|
||||||
|
|
||||||
# ifdef RGBLIGHT_LAYER_BLINK
|
# ifdef RGBLIGHT_LAYER_BLINK
|
||||||
uint8_t _blinked_layer_mask = 0;
|
rgblight_layer_mask_t _blinked_layer_mask = 0;
|
||||||
uint16_t _blink_duration = 0;
|
uint16_t _blink_duration = 0;
|
||||||
static uint16_t _blink_timer;
|
static uint16_t _blink_timer;
|
||||||
|
|
||||||
void rgblight_blink_layer(uint8_t layer, uint16_t duration_ms) {
|
void rgblight_blink_layer(uint8_t layer, uint16_t duration_ms) {
|
||||||
rgblight_set_layer_state(layer, true);
|
rgblight_set_layer_state(layer, true);
|
||||||
|
|
Loading…
Reference in a new issue