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