Skip to content

Commit

Permalink
Fix int size (#775)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcpedit authored Aug 26, 2024
1 parent 6099dee commit 313ccb7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions quantum/mousekey.h
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,11 @@ extern uint8_t mk_interval;
extern uint8_t mk_max_speed;
extern uint8_t mk_time_to_max;
extern uint8_t mk_wheel_delay;
#ifdef MK_KINETIC_SPEED
extern uint16_t mk_wheel_interval;
#else
extern uint8_t mk_wheel_interval;
#endif
extern uint8_t mk_wheel_max_speed;
extern uint8_t mk_wheel_time_to_max;

Expand Down

0 comments on commit 313ccb7

Please sign in to comment.