summaryrefslogtreecommitdiff
path: root/users/mechmerlin/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'users/mechmerlin/config.h')
-rw-r--r--users/mechmerlin/config.h18
1 files changed, 14 insertions, 4 deletions
diff --git a/users/mechmerlin/config.h b/users/mechmerlin/config.h
index 3c45162bcc..9ca39a12ac 100644
--- a/users/mechmerlin/config.h
+++ b/users/mechmerlin/config.h
@@ -18,10 +18,20 @@
// Enable features depending on keyboard
#if defined(KEYBOARD_clueboard_66_hotswap_prototype)
- #define RGBLIGHT_ENABLE
- #define AUDIO_CLICKY
+ #ifndef RGBLIGHT_ENABLE
+ #define RGBLIGHT_ENABLE
+ #endif
+
+ #ifndef AUDIO_CLICKY
+ #define AUDIO_CLICKY
+ #endif
+
#elif defined(KEYBOARD_clueboard_66_hotswap_gen1)
- #define AUDIO_CLICKY
+ #ifndef AUDIO_CLICKY
+ #define AUDIO_CLICKY
+ #endif
#else
- #define RGBLIGHT_ENABLE
+ #ifndef RGBLIGHT_ENABLE
+ #define RGBLIGHT_ENABLE
+ #endif
#endif