|
|
@ -13,7 +13,8 @@ bool rgb_matrix_solid_reactive_simple(effect_params_t* params) {
|
|
|
|
uint16_t max_tick = 65535 / rgb_matrix_config.speed;
|
|
|
|
uint16_t max_tick = 65535 / rgb_matrix_config.speed;
|
|
|
|
for (uint8_t i = led_min; i < led_max; i++) {
|
|
|
|
for (uint8_t i = led_min; i < led_max; i++) {
|
|
|
|
uint16_t tick = max_tick;
|
|
|
|
uint16_t tick = max_tick;
|
|
|
|
for(uint8_t j = 0; j < g_last_hit_tracker.count; j++) {
|
|
|
|
// Reverse search to find most recent key hit
|
|
|
|
|
|
|
|
for (int8_t j = g_last_hit_tracker.count - 1; j >= 0; j--) {
|
|
|
|
if (g_last_hit_tracker.index[j] == i && g_last_hit_tracker.tick[j] < tick) {
|
|
|
|
if (g_last_hit_tracker.index[j] == i && g_last_hit_tracker.tick[j] < tick) {
|
|
|
|
tick = g_last_hit_tracker.tick[j];
|
|
|
|
tick = g_last_hit_tracker.tick[j];
|
|
|
|
break;
|
|
|
|
break;
|
|
|
|