You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Have #define MK_COMBINED in your config.h, as you like to use KC_ACL0 et al. when mousing
Build is broken:
Compiling: quantum/mousekey.c quantum/mousekey.c: In function ‘move_unit’:
quantum/mousekey.c:135:35: error: ‘mouse_timer’ undeclared (first use in this function)
135 | } else if (mousekey_repeat && mouse_timer) {
| ^~~~~~~~~~~
quantum/mousekey.c:135:35: note: each undeclared identifier is reported only once for each function it appears in
quantum/mousekey.c: At top level:
quantum/mousekey.c:149:7: error: conflicting types for ‘mk_wheel_interval’
149 | float mk_wheel_interval = 1000.0f / MOUSEKEY_WHEEL_INITIAL_MOVEMENTS;
| ^~~~~~~~~~~~~~~~~
quantum/mousekey.c:68:9: note: previous definition of ‘mk_wheel_interval’ was here
68 | uint8_t mk_wheel_interval = MOUSEKEY_WHEEL_INTERVAL;
| ^~~~~~~~~~~~~~~~~
quantum/mousekey.c: In function ‘wheel_unit’:
quantum/mousekey.c:156:35: error: ‘mouse_timer’ undeclared (first use in this function)
156 | } else if (mousekey_repeat && mouse_timer) {
| ^~~~~~~~~~~
[ERRORS]
Patching things up to get them to compile is easy enough but results in a pointer that is way too slow.
Additional Context
Was working fine before, though I didn't actually bisect, but the PR and merge seem like obvious culprits.
The text was updated successfully, but these errors were encountered:
Describe the Bug
Patching things up to get them to compile is easy enough but results in a pointer that is way too slow.
Additional Context
Was working fine before, though I didn't actually bisect, but the PR and merge seem like obvious culprits.
The text was updated successfully, but these errors were encountered: