From 024f0455deefaa9d47cae255a9ba098650c3841f Mon Sep 17 00:00:00 2001 From: Jack Humbert Date: Fri, 15 Sep 2017 22:12:25 -0400 Subject: [core] fix rgb source include --- common_features.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'common_features.mk') diff --git a/common_features.mk b/common_features.mk index 6f29c97c9..117f84260 100644 --- a/common_features.mk +++ b/common_features.mk @@ -93,12 +93,13 @@ endif ifeq ($(strip $(RGBLIGHT_ENABLE)), yes) OPT_DEFS += -DRGBLIGHT_ENABLE + SRC += $(QUANTUM_DIR)/rgblight.c CIE1931_CURVE = yes LED_BREATHING_TABLE = yes ifeq ($(strip $(RGBLIGHT_CUSTOM_DRIVER)), yes) OPT_DEFS += -DRGBLIGHT_CUSTOM_DRIVER else - SRC += ws2812.c + SRC += ws2812.c endif endif -- cgit v1.2.3-24-g4f1b