Skip to content

Commit

Permalink
Set minimum middle column value (qmk#21365)
Browse files Browse the repository at this point in the history
  • Loading branch information
filterpaper authored and thismarvin committed Sep 27, 2023
1 parent 4375361 commit 4dd890a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion quantum/rgb_matrix/animations/pixel_fractal_anim.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ RGB_MATRIX_EFFECT(PIXEL_FRACTAL)
# ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS

static bool PIXEL_FRACTAL(effect_params_t* params) {
# define MID_COL MATRIX_COLS / 2
# if MATRIX_COLS < 2
# define MID_COL 1
# else
# define MID_COL MATRIX_COLS / 2
# endif
static bool led[MATRIX_ROWS][MID_COL];
static uint32_t wait_timer = 0;

Expand Down

0 comments on commit 4dd890a

Please sign in to comment.