diff options
author | Joel Challis <git@zvecr.com> | 2021-07-24 15:50:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-24 15:50:32 +0100 |
commit | e562238309fd5fa6eaf81918fab23b4fe674b5f2 (patch) | |
tree | 2bfb7bb2af44f88ec76216598baed0d3c9f0d3fe /keyboards/xd002/keymaps/rgb_lite/keymap.c | |
parent | 567da49ed027a936a6f56aa069aad0db4605a198 (diff) |
Fix up xd002 rgb keymaps (#13685)
Diffstat (limited to 'keyboards/xd002/keymaps/rgb_lite/keymap.c')
-rw-r--r-- | keyboards/xd002/keymaps/rgb_lite/keymap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/xd002/keymaps/rgb_lite/keymap.c b/keyboards/xd002/keymaps/rgb_lite/keymap.c index ed9185e3b5..a795ca8a6d 100644 --- a/keyboards/xd002/keymaps/rgb_lite/keymap.c +++ b/keyboards/xd002/keymaps/rgb_lite/keymap.c @@ -16,7 +16,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { if (record->event.pressed) { switch (keycode) { case RGB_HUI: - rgblight_increase_hue(); + rgblite_increase_hue(); break; case QMKURL: SEND_STRING("https://qmk.fm/" SS_TAP(X_ENTER)); @@ -27,5 +27,5 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { } void keyboard_post_init_user(void) { - rgblight_increase_hue(); + rgblite_increase_hue(); } |