summaryrefslogtreecommitdiff
path: root/quantum/led_matrix_types.h
diff options
context:
space:
mode:
authorRyan <fauxpark@gmail.com>2021-02-15 11:55:13 +1100
committerGitHub <noreply@github.com>2021-02-15 11:55:13 +1100
commit9ee12820197f38f6618b78f92481f3ffd2d8b7e5 (patch)
treed3a35c71242cbfff2868ce85d5348ccb8a68a489 /quantum/led_matrix_types.h
parent6f44c2ec31a6aeacd9e90060a9670be03be372fe (diff)
LED Matrix: rename `LED_DRIVER_LED_COUNT` to `DRIVER_LED_TOTAL` (#11858)
Diffstat (limited to 'quantum/led_matrix_types.h')
-rw-r--r--quantum/led_matrix_types.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/led_matrix_types.h b/quantum/led_matrix_types.h
index 2602bf2bf6..669b67042b 100644
--- a/quantum/led_matrix_types.h
+++ b/quantum/led_matrix_types.h
@@ -49,8 +49,8 @@ typedef struct PACKED {
typedef struct PACKED {
uint8_t matrix_co[MATRIX_ROWS][MATRIX_COLS];
- point_t point[LED_DRIVER_LED_COUNT];
- uint8_t flags[LED_DRIVER_LED_COUNT];
+ point_t point[DRIVER_LED_TOTAL];
+ uint8_t flags[DRIVER_LED_TOTAL];
} led_config_t;
typedef union {