aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/marksard/leftover30/keymaps/default/keymap.c
diff options
context:
space:
mode:
authorRyan2025-07-11 19:05:41 +0200
committerGitHub2025-07-11 19:05:41 +0200
commit6b38dc17cd12b740b45b56c67ad04bb428f3bddb (patch)
treea5e39f81fc4fec4eeeff027c059051e7f82a28de /keyboards/marksard/leftover30/keymaps/default/keymap.c
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/marksard/leftover30/keymaps/default/keymap.c')
-rw-r--r--keyboards/marksard/leftover30/keymaps/default/keymap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/keyboards/marksard/leftover30/keymaps/default/keymap.c b/keyboards/marksard/leftover30/keymaps/default/keymap.c
index dcad144ebb..08ee136e81 100644
--- a/keyboards/marksard/leftover30/keymaps/default/keymap.c
+++ b/keyboards/marksard/leftover30/keymaps/default/keymap.c
@@ -90,9 +90,9 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
//,-----------------------------------------------------------------------------------------------------------.
QK_BOOT, RGBRST, AG_NORM, AG_SWAP, XXXXXXX, KC_HOME, KC_PGDN, KC_PGUP, KC_END, KC_INS, KC_PSCR,
//|--------+--------+--------+--------+--------+--------|--------+--------+--------+--------+--------+--------|
- UG_TOGG, UG_HUEU, UG_SATU, UG_VALU, XXXXXXX, KC_MS_L, KC_MS_D, KC_MS_U, KC_MS_R, KC_NUM,
+ UG_TOGG, UG_HUEU, UG_SATU, UG_VALU, XXXXXXX, MS_LEFT, MS_DOWN, MS_UP, MS_RGHT, KC_NUM,
//|--------+--------+--------+--------+--------+--------|--------+--------+--------+--------+--------+--------|
- UG_NEXT, UG_HUED, UG_SATD, UG_VALD, XXXXXXX, KC_BTN1, KC_BTN2, XXXXXXX, XXXXXXX, KC_CAPS,
+ UG_NEXT, UG_HUED, UG_SATD, UG_VALD, XXXXXXX, MS_BTN1, MS_BTN2, XXXXXXX, XXXXXXX, KC_CAPS,
//|--------+--------+--------+--------+--------+--------|--------+--------+--------+--------+--------+--------|
_______, _______, _______, _______, KC_CAPS
//`-----------------------------------------------------------------------------------------------------------'
@@ -148,7 +148,7 @@ bool encoder_update_user(uint8_t index, bool clockwise) {
} else if (IS_LAYER_ON(_RAISE)) {
tap_code16((clockwise == true) ? S(KC_DOWN) : S(KC_UP));
} else {
- tap_code((clockwise == true) ? KC_WH_D : KC_WH_U);
+ tap_code((clockwise == true) ? MS_WHLD : MS_WHLU);
}
}
return true;