diff options
| author | Joel Challis | 2024-07-11 14:47:53 +0200 |
|---|---|---|
| committer | GitHub | 2024-07-11 14:47:53 +0200 |
| commit | e0809eade5b054035a2bc0d00b1a8e9a02ba0d19 (patch) | |
| tree | ce7a855b44ebc8a668b692f4c354ef4b12cd273e /keyboards/handwired | |
| parent | 23c470412381806c47e6b7f5e7368a1bf4387788 (diff) | |
Various fixes for keyboards not implementing callbacks correctly (#24092)
Diffstat (limited to 'keyboards/handwired')
| -rw-r--r-- | keyboards/handwired/selene/selene.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/keyboards/handwired/selene/selene.c b/keyboards/handwired/selene/selene.c index 3d0ef667cf..49df43314b 100644 --- a/keyboards/handwired/selene/selene.c +++ b/keyboards/handwired/selene/selene.c @@ -17,6 +17,8 @@ #include "quantum.h" -void keyboard_post_init_user(void) { +void keyboard_post_init_kb(void) { rgblight_setrgb(0xff, 0xff, 0xff); + + keyboard_post_init_user(); } |