summaryrefslogtreecommitdiff
path: root/quantum/process_keycode/process_rgb.c
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/process_keycode/process_rgb.c')
-rw-r--r--quantum/process_keycode/process_rgb.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/quantum/process_keycode/process_rgb.c b/quantum/process_keycode/process_rgb.c
index dae129786e..4e63bf3ca8 100644
--- a/quantum/process_keycode/process_rgb.c
+++ b/quantum/process_keycode/process_rgb.c
@@ -14,6 +14,14 @@
14 * along with this program. If not, see <http://www.gnu.org/licenses/>. 14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */ 15 */
16#include "process_rgb.h" 16#include "process_rgb.h"
17#include "action_util.h"
18
19#ifdef RGB_MATRIX_ENABLE
20# include "rgb_matrix.h"
21#endif
22#ifdef RGBLIGHT_ENABLE
23# include "rgblight.h"
24#endif
17 25
18typedef void (*rgb_func_pointer)(void); 26typedef void (*rgb_func_pointer)(void);
19 27