Skip to content

Commit

Permalink
Merge pull request #38 from zsa/fix/rgb_matrix_simple_reaction_tracking
Browse files Browse the repository at this point in the history
Simple fix for selecting which tracked key press to work off of for s…
  • Loading branch information
fdidron authored May 6, 2019
2 parents e622e6d + 2351739 commit 1f3fd52
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion quantum/rgb_matrix_animations/solid_reactive_anim.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ bool rgb_matrix_solid_reactive(effect_params_t* params) {
// Relies on hue being 8-bit and wrapping
for (uint8_t i = led_min; i < led_max; i++) {
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) {
tick = g_last_hit_tracker.tick[j];
break;
Expand Down
3 changes: 2 additions & 1 deletion quantum/rgb_matrix_animations/solid_reactive_simple_anim.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ bool rgb_matrix_solid_reactive_simple(effect_params_t* params) {
uint16_t max_tick = 65535 / rgb_matrix_config.speed;
for (uint8_t i = led_min; i < led_max; i++) {
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) {
tick = g_last_hit_tracker.tick[j];
break;
Expand Down

0 comments on commit 1f3fd52

Please sign in to comment.