summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlbert Y <76888457+filterpaper@users.noreply.github.com>2022-01-13 10:38:34 +0800
committerGitHub <noreply@github.com>2022-01-12 18:38:34 -0800
commit731072fc5c280bb2da257b0ab2a9b601cebeb756 (patch)
tree6a1d0eebcffcdafa839ac7d703a784dcb9537b48
parent362a65510a0fe80a6fa56400b4b8089accde21c7 (diff)
[Keyboard] Fix compile error caused by variable exclusion on Moonlander (#15860)
-rw-r--r--keyboards/moonlander/moonlander.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/keyboards/moonlander/moonlander.c b/keyboards/moonlander/moonlander.c
index ea50226f0c..e2e163f116 100644
--- a/keyboards/moonlander/moonlander.c
+++ b/keyboards/moonlander/moonlander.c
@@ -124,7 +124,9 @@ layer_state_t layer_state_set_kb(layer_state_t state) {
bool LED_3 = false;
bool LED_4 = false;
bool LED_5 = false;
+#if !defined(CAPS_LOCK_STATUS)
bool LED_6 = false;
+#endif
uint8_t layer = get_highest_layer(state);
switch (layer) {