1
0
Fork 0

De-obfuscate random8 functions in RGB matrix animations (#19416)

This commit is contained in:
Albert Y 2022-12-28 04:11:31 +08:00 committed by GitHub
parent 809c05ddf2
commit 7f2ac4c576
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 20 deletions

View file

@ -24,7 +24,7 @@ bool RAINDROPS(effect_params_t* params) {
if (!params->init) {
// Change one LED every tick, make sure speed is not 0
if (scale16by8(g_rgb_timer, qadd8(rgb_matrix_config.speed, 16)) % 10 == 0) {
raindrops_set_color(random8() % RGB_MATRIX_LED_COUNT, params);
raindrops_set_color(random8_max(RGB_MATRIX_LED_COUNT), params);
}
} else {
for (int i = led_min; i < led_max; i++) {