From: Jack Humbert Date: Sat, 16 Sep 2017 02:12:25 +0000 (-0400) Subject: [core] fix rgb source include X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=024f0455deefaa9d47cae255a9ba098650c3841f;p=qmk_firmware.git [core] fix rgb source include --- 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