Skip to content

Commit

Permalink
Fix RGB Matrix Cycle Left-Right Animation (qmk#6421)
Browse files Browse the repository at this point in the history
One-line fix for a typo that could break build if DISABLE_RGB_MATRIX_CYCLE_LEFT_RIGHT was defined but not DISABLE_RGB_MATRIX_CYCLE_ALL
  • Loading branch information
yrdns authored and raymond-w-ko committed Aug 4, 2019
1 parent fbe4389 commit 2835b46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quantum/rgb_matrix.c
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@
#endif

#if !defined(RGB_MATRIX_STARTUP_MODE)
#ifndef DISABLE_RGB_MATRIX_CYCLE_ALL
#ifndef DISABLE_RGB_MATRIX_CYCLE_LEFT_RIGHT
#define RGB_MATRIX_STARTUP_MODE RGB_MATRIX_CYCLE_LEFT_RIGHT
#else
// fallback to solid colors if RGB_MATRIX_CYCLE_LEFT_RIGHT is disabled in userspace
Expand Down

0 comments on commit 2835b46

Please sign in to comment.