forked from mirrors/qmk_userspace
Fixed split keyboard issue where custom LED indicators could activate incorrect LEDs (#20203) (#20204)
Co-authored-by: N M <ninja.milkman@gmail.com> Fixed split keyboard issue where custom LED indicators could activate incorrect LEDs (#20203)
This commit is contained in:
parent
b67bdf222e
commit
d82c6648f5
2 changed files with 11 additions and 16 deletions
|
@ -459,14 +459,7 @@ void rgb_matrix_indicators_advanced(effect_params_t *params) {
|
|||
* and not sure which would be better. Otherwise, this should be called from
|
||||
* rgb_task_render, right before the iter++ line.
|
||||
*/
|
||||
#if defined(RGB_MATRIX_LED_PROCESS_LIMIT) && RGB_MATRIX_LED_PROCESS_LIMIT > 0 && RGB_MATRIX_LED_PROCESS_LIMIT < RGB_MATRIX_LED_COUNT
|
||||
uint8_t min = RGB_MATRIX_LED_PROCESS_LIMIT * (params->iter - 1);
|
||||
uint8_t max = min + RGB_MATRIX_LED_PROCESS_LIMIT;
|
||||
if (max > RGB_MATRIX_LED_COUNT) max = RGB_MATRIX_LED_COUNT;
|
||||
#else
|
||||
uint8_t min = 0;
|
||||
uint8_t max = RGB_MATRIX_LED_COUNT;
|
||||
#endif
|
||||
RGB_MATRIX_USE_LIMITS_ITER(min, max, params->iter - 1);
|
||||
rgb_matrix_indicators_advanced_kb(min, max);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue