Merge remote-tracking branch 'origin/master' into develop

master
QMK Bot 2022-04-16 17:41:18 +00:00
commit ae4d518352
1 changed files with 4 additions and 0 deletions

View File

@ -813,6 +813,10 @@ void rgblight_blink_layer(uint8_t layer, uint16_t duration_ms) {
}
void rgblight_blink_layer_repeat(uint8_t layer, uint16_t duration_ms, uint8_t times) {
if (times > UINT8_MAX / 2) {
times = UINT8_MAX / 2;
}
_times_remaining = times * 2;
_dur = duration_ms;