Skip to content

Commit

Permalink
Apply suggestion because drashna is too lazy to open in git locally
Browse files Browse the repository at this point in the history
  • Loading branch information
drashna authored Jul 7, 2022
1 parent ef75a4b commit cede071
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion keyboards/bastardkb/charybdis/charybdis.c
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,11 @@ bool process_record_kb(uint16_t keycode, keyrecord_t* record) {
pointing_device_send();
}
# endif // !MOUSEKEY_ENABLE
if ((keycode >= POINTER_DEFAULT_DPI_FORWARD && keycode < CHARYBDIS_SAFE_RANGE) || IS_MOUSEKEY(keycode)) {
if (IS_MOUSEKEY(keycode)
# ifndef NO_CHARYBDIS_KEYCODES
|| (keycode >= POINTER_DEFAULT_DPI_FORWARD && keycode < CHARYBDIS_SAFE_RANGE)
# endif
) {
debug_charybdis_config_to_console(&g_charybdis_config);
}
# endif // POINTING_DEVICE_ENABLE
Expand Down

0 comments on commit cede071

Please sign in to comment.