diff options
| author | Nick Brassel | 2025-09-06 09:55:23 +0200 |
|---|---|---|
| committer | Nick Brassel | 2025-09-06 09:55:23 +0200 |
| commit | 0188038bc0cfecdd6d413086634af4e5806c1ad7 (patch) | |
| tree | 03bdd000530476ef4fc9e1242d62022405df21e7 /quantum/command.c | |
| parent | 1a58fce043e7f2e2b938dee03945dabc29e48d73 (diff) | |
| parent | 2a4b9f79fd32a41fd157cba83293ece995523b45 (diff) | |
Merge branch 'develop'
Diffstat (limited to 'quantum/command.c')
| -rw-r--r-- | quantum/command.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/quantum/command.c b/quantum/command.c index 998d9b9aa1..ea2fd68e2b 100644 --- a/quantum/command.c +++ b/quantum/command.c @@ -28,7 +28,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "action_layer.h" #include "action_util.h" #include "eeconfig.h" -#include "sleep_led.h" #include "led.h" #include "command.h" #include "quantum.h" @@ -39,6 +38,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. # include "backlight.h" #endif +#ifdef SLEEP_LED_ENABLE +# include "sleep_led.h" +#endif + #if defined(MOUSEKEY_ENABLE) # include "mousekey.h" #endif |