Fixed weird characters
parent
7082172bc4
commit
065ab5b166
|
@ -18,7 +18,7 @@
|
|||
// Send a special character.
|
||||
// Returns false if character was caught, true otherwise.
|
||||
bool send_special_character(uint16_t keycode) {
|
||||
if ( (keycode > M_SPECIAL_TOP) && (keycode < M_SPECIAL_BOTTОM) ) {
|
||||
if ( (keycode > M_SPECIAL_TOP) && (keycode < M_SPECIAL_BOTTOM) ) {
|
||||
hid_send_special_char(keycode - M_SPECIAL_TOP - 1);
|
||||
return false;
|
||||
}
|
||||
|
@ -123,4 +123,4 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|||
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -55,5 +55,5 @@ enum custom_keycodes {
|
|||
M_SC_BYUS,
|
||||
M_SC_YAE,
|
||||
M_SC_SHRUG,
|
||||
M_SPECIAL_BOTTОM
|
||||
M_SPECIAL_BOTTOM
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue