diff options
| author | Ryan | 2024-10-12 18:43:50 +0200 |
|---|---|---|
| committer | GitHub | 2024-10-12 18:43:50 +0200 |
| commit | 6fa11bf21913b5ccb531acc3c2baec963f4d384a (patch) | |
| tree | aaf6188a4579949cc1fbac61d0fee5234b97996a /keyboards/tetris | |
| parent | 5c97a78ce6ab45643dcb420ba2ad20c30dcd5b8a (diff) | |
Separate RGBLight/RGB Matrix keycode handling (#23679)
* Separate RGBLight/RGB Matrix keycode handling
* Remove `_DISABLE_KEYCODES` handling
* Update RGB Matrix keycode docs
* Update underglow keycodes for previously migrated boards
* Update keycodes for boards with custom handling
* Fix typos
* Fix bad merge
Diffstat (limited to 'keyboards/tetris')
| -rwxr-xr-x | keyboards/tetris/keymaps/default/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/tetris/keymaps/default/keymap.c b/keyboards/tetris/keymaps/default/keymap.c index 041d928610..f68704fe37 100755 --- a/keyboards/tetris/keymaps/default/keymap.c +++ b/keyboards/tetris/keymaps/default/keymap.c @@ -139,7 +139,7 @@ void matrix_scan_user(void) { bool process_record_user(uint16_t keycode, keyrecord_t * record) { switch (keycode) { - case RGB_MOD: + case QK_UNDERGLOW_MODE_NEXT: RGB_LAYER0_mode = rgblight_config.mode; break; default: |