aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/hnahkb
diff options
context:
space:
mode:
authorRyan2025-07-11 19:05:41 +0200
committerGitHub2025-07-11 19:05:41 +0200
commit6b38dc17cd12b740b45b56c67ad04bb428f3bddb (patch)
treea5e39f81fc4fec4eeeff027c059051e7f82a28de /keyboards/hnahkb
parent71b88b333d0bf000201ef588101e501f2d386575 (diff)
Remove deprecated `RGB_` and Mouse keycodes (#25444)
* Remove deprecated `RGB_` and Mouse keycodes * Update old mouse keycodes, 0-9/A-M * Update old mouse keycodes, N-Z & layouts * Missed some stuff
Diffstat (limited to 'keyboards/hnahkb')
-rw-r--r--keyboards/hnahkb/vn66/keymaps/default/keymap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/hnahkb/vn66/keymaps/default/keymap.c b/keyboards/hnahkb/vn66/keymaps/default/keymap.c
index 3af2332c19..f50050bdc5 100644
--- a/keyboards/hnahkb/vn66/keymaps/default/keymap.c
+++ b/keyboards/hnahkb/vn66/keymaps/default/keymap.c
@@ -43,13 +43,13 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
bool encoder_update_user(uint8_t index, bool clockwise) {
if (clockwise == 0) {
#ifdef MOUSEKEY_ENABLE
- tap_code(KC_MS_WH_DOWN);
+ tap_code(MS_WHLD);
#else
tap_code(KC_VOLD);
#endif
} else {
#ifdef MOUSEKEY_ENABLE
- tap_code(KC_MS_WH_UP);
+ tap_code(MS_WHLU);
#else
tap_code(KC_VOLU);
#endif