1
0
Fork 0

rgblight: Limit max repeat times in rgblight_blink_layer_repeat (#16860)

This commit is contained in:
Simon Arlott 2022-04-16 18:40:48 +01:00 committed by GitHub
parent b331c98ca4
commit 1cfe49714f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;