Skip to content

Commit

Permalink
Move mousekey keycodes into newly freed up keycode block (qmk#16076)
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna authored Sep 17, 2022
1 parent a26f1dd commit d67d388
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions quantum/keycode.h
Original file line number Diff line number Diff line change
Expand Up @@ -514,11 +514,11 @@ enum mouse_keys {
#ifdef VIA_ENABLE
KC_MS_UP = 0xF0,
#else
KC_MS_UP = 0xED,
KC_MS_UP = 0xCD,
#endif
KC_MS_DOWN,
KC_MS_LEFT,
KC_MS_RIGHT, // 0xF0
KC_MS_RIGHT,
KC_MS_BTN1,
KC_MS_BTN2,
KC_MS_BTN3,
Expand All @@ -543,7 +543,7 @@ enum mouse_keys {
/* Acceleration */
KC_MS_ACCEL0,
KC_MS_ACCEL1,
KC_MS_ACCEL2 // 0xFF
KC_MS_ACCEL2 // 0xDF, or 0xFF if via enabled
};

#include "keycode_legacy.h"

0 comments on commit d67d388

Please sign in to comment.