qmk cformat (#10767)
This commit is contained in:
parent
75a18e69f9
commit
991c75081c
4 changed files with 11 additions and 13 deletions
|
|
@ -230,14 +230,14 @@ void process_record_handler(keyrecord_t *record) {
|
|||
|
||||
#if defined(PS2_MOUSE_ENABLE) || defined(POINTING_DEVICE_ENABLE)
|
||||
void register_button(bool pressed, enum mouse_buttons button) {
|
||||
#ifdef PS2_MOUSE_ENABLE
|
||||
# ifdef PS2_MOUSE_ENABLE
|
||||
tp_buttons = pressed ? tp_buttons | button : tp_buttons & ~button;
|
||||
#endif
|
||||
#ifdef POINTING_DEVICE_ENABLE
|
||||
# endif
|
||||
# ifdef POINTING_DEVICE_ENABLE
|
||||
report_mouse_t currentReport = pointing_device_get_report();
|
||||
currentReport.buttons = pressed ? currentReport.buttons | button : currentReport.buttons & ~button;
|
||||
currentReport.buttons = pressed ? currentReport.buttons | button : currentReport.buttons & ~button;
|
||||
pointing_device_set_report(currentReport);
|
||||
#endif
|
||||
# endif
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
@ -742,9 +742,9 @@ void process_action(keyrecord_t *record, action_t action) {
|
|||
retro_tapping_counter = 0;
|
||||
} else {
|
||||
if (
|
||||
# ifdef RETRO_TAPPING_PER_KEY
|
||||
# ifdef RETRO_TAPPING_PER_KEY
|
||||
get_retro_tapping(get_event_keycode(record->event, false), record) &&
|
||||
# endif
|
||||
# endif
|
||||
retro_tapping_counter == 2) {
|
||||
tap_code(action.layer_tap.code);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -193,9 +193,9 @@ typedef struct {
|
|||
typedef struct {
|
||||
#if JOYSTICK_AXES_COUNT > 0
|
||||
# if JOYSTICK_AXES_RESOLUTION > 8
|
||||
int16_t axes[JOYSTICK_AXES_COUNT];
|
||||
int16_t axes[JOYSTICK_AXES_COUNT];
|
||||
# else
|
||||
int8_t axes[JOYSTICK_AXES_COUNT];
|
||||
int8_t axes[JOYSTICK_AXES_COUNT];
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue