diff options
| author | XScorpion2 <rcalt2vt@gmail.com> | 2019-04-30 00:18:50 +0200 |
|---|---|---|
| committer | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2019-04-29 15:18:50 -0700 |
| commit | a7113c8ed090d0ac647f30ee9b8ef41252e568ed (patch) | |
| tree | 24d33db679b4d1357efef2784e69fea48e98d0ed /quantum/rgb_matrix_animations/solid_reactive_simple_anim.h | |
| parent | 1d784f0f9575b70e35c9c8338b0ff80dc7316d7e (diff) | |
| download | qmk_firmware-a7113c8ed090d0ac647f30ee9b8ef41252e568ed.tar.gz qmk_firmware-a7113c8ed090d0ac647f30ee9b8ef41252e568ed.zip | |
Updated rgb_led struct field modifier to flags (#5619)
Updated effects to test led flags
Updated massdrop to use new flags field for led toggle
Diffstat (limited to 'quantum/rgb_matrix_animations/solid_reactive_simple_anim.h')
| -rw-r--r-- | quantum/rgb_matrix_animations/solid_reactive_simple_anim.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/quantum/rgb_matrix_animations/solid_reactive_simple_anim.h b/quantum/rgb_matrix_animations/solid_reactive_simple_anim.h index e84cd6939..d7bdb414e 100644 --- a/quantum/rgb_matrix_animations/solid_reactive_simple_anim.h +++ b/quantum/rgb_matrix_animations/solid_reactive_simple_anim.h | |||
| @@ -12,6 +12,7 @@ bool rgb_matrix_solid_reactive_simple(effect_params_t* params) { | |||
| 12 | // Max tick based on speed scale ensures results from scale16by8 with rgb_matrix_config.speed are no greater than 255 | 12 | // Max tick based on speed scale ensures results from scale16by8 with rgb_matrix_config.speed are no greater than 255 |
| 13 | uint16_t max_tick = 65535 / rgb_matrix_config.speed; | 13 | uint16_t max_tick = 65535 / rgb_matrix_config.speed; |
| 14 | for (uint8_t i = led_min; i < led_max; i++) { | 14 | for (uint8_t i = led_min; i < led_max; i++) { |
| 15 | RGB_MATRIX_TEST_LED_FLAGS(); | ||
| 15 | uint16_t tick = max_tick; | 16 | uint16_t tick = max_tick; |
| 16 | for(uint8_t j = 0; j < g_last_hit_tracker.count; j++) { | 17 | for(uint8_t j = 0; j < g_last_hit_tracker.count; j++) { |
| 17 | if (g_last_hit_tracker.index[j] == i && g_last_hit_tracker.tick[j] < tick) { | 18 | if (g_last_hit_tracker.index[j] == i && g_last_hit_tracker.tick[j] < tick) { |
