diff options
author | Joel Challis <git@zvecr.com> | 2023-02-10 21:10:14 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-10 21:10:14 +0000 |
commit | 1d0b4c8d38794dc019ecb224f2992b4ddfa70839 (patch) | |
tree | 48e0423bcafbb2fa680c7bc5199aba8794665339 /keyboards/xiudi | |
parent | 2ffdec5dc2a5cb350998168e76d7916e2d9728fc (diff) |
Tidy up use of keycode range helpers (#19756)
Diffstat (limited to 'keyboards/xiudi')
-rw-r--r-- | keyboards/xiudi/xd75/keymaps/xo/keymap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/keyboards/xiudi/xd75/keymaps/xo/keymap.c b/keyboards/xiudi/xd75/keymaps/xo/keymap.c index ca3d4cff54..8fa1f9feaa 100644 --- a/keyboards/xiudi/xd75/keymaps/xo/keymap.c +++ b/keyboards/xiudi/xd75/keymaps/xo/keymap.c @@ -45,7 +45,7 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { backlight_level(6); } - if (IS_MOD(keycode)) { + if (IS_MODIFIER_KEYCODE(keycode)) { if (record->event.pressed) { rgblight_setrgb(RGB_RED); } else { |