From 2ffa4798a43682a73598c0b43d46abcca7cd6e83 Mon Sep 17 00:00:00 2001 From: Lenbok Date: Sat, 6 Apr 2019 13:19:42 +1300 Subject: Fix bugs that cause compile failures when enabling only some animations. --- quantum/rgb_matrix.c | 2 +- quantum/rgb_matrix_animations/breathing_anim.h | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) (limited to 'quantum') diff --git a/quantum/rgb_matrix.c b/quantum/rgb_matrix.c index 413e5777f..a1193d4c0 100644 --- a/quantum/rgb_matrix.c +++ b/quantum/rgb_matrix.c @@ -101,7 +101,7 @@ void eeconfig_update_rgb_matrix(uint32_t val) { void eeconfig_update_rgb_matrix_default(void) { dprintf("eeconfig_update_rgb_matrix_default\n"); rgb_matrix_config.enable = 1; -#ifndef DISABLE_RGB_MATRIX_CYCLE_ALL +#ifndef DISABLE_RGB_MATRIX_CYCLE_LEFT_RIGHT rgb_matrix_config.mode = RGB_MATRIX_CYCLE_LEFT_RIGHT; #else // fallback to solid colors if RGB_MATRIX_CYCLE_LEFT_RIGHT is disabled in userspace diff --git a/quantum/rgb_matrix_animations/breathing_anim.h b/quantum/rgb_matrix_animations/breathing_anim.h index fb90b66bd..4a9a1dcdb 100644 --- a/quantum/rgb_matrix_animations/breathing_anim.h +++ b/quantum/rgb_matrix_animations/breathing_anim.h @@ -1,6 +1,7 @@ #pragma once #ifndef DISABLE_RGB_MATRIX_BREATHING +extern rgb_counters_t g_rgb_counters; extern rgb_config_t rgb_matrix_config; bool rgb_matrix_breathing(effect_params_t* params) { -- cgit v1.2.3-24-g4f1b