Skip to content

Commit

Permalink
Additional fixes for userspace code
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna committed Jan 30, 2022
1 parent 74af4c0 commit e828b97
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion users/drashna/oled/oled_stuff.c
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,7 @@ void oled_driver_render_logo_left(void) {
render_matrix_scan_rate(2);
# endif
oled_set_cursor(7, 2);
# if defined(KEYBOARD_bastardkb_charybdis)
# if defined(KEYBOARD_bastardkb_charybdis) || defined(KEYBOARD_handwired_tractyl_manuform)
render_pointing_dpi_status(charybdis_get_pointer_sniping_enabled() ? charybdis_get_pointer_sniping_dpi() : charybdis_get_pointer_default_dpi(), 1);

// credit and thanks to jaspertandy on discord for these images
Expand Down
4 changes: 2 additions & 2 deletions users/drashna/pointing/pointing.c
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,9 @@ bool process_record_pointing(uint16_t keycode, keyrecord_t* record) {
}
break;
case MO(_MOUSE):
#if defined(KEYBOARD_ploopy) || defined(KEYBOARD_handwired_tractyl_manuform)
#if defined(KEYBOARD_ploopy)
case DPI_CONFIG:
#elif defined(KEYBOARD_bastardkb_charybdis) && !defined(NO_CHARYBDIS_KEYCODES)
#elif (defined(KEYBOARD_bastardkb_charybdis) || defined(KEYBOARD_handwired_tractyl_manuform)) && !defined(NO_CHARYBDIS_KEYCODES)
case SAFE_RANGE ... (CHARYBDIS_SAFE_RANGE-1):
#endif
case KC_MS_UP ... KC_MS_WH_RIGHT:
Expand Down

0 comments on commit e828b97

Please # to comment.