Fixed weird characters

master
Mark 2022-11-18 23:33:26 -08:00
parent 7082172bc4
commit 065ab5b166
Signed by: Mark
GPG Key ID: AD62BB059C2AAEE4
2 changed files with 3 additions and 3 deletions

View File

@ -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;
}
}

View File

@ -55,5 +55,5 @@ enum custom_keycodes {
M_SC_BYUS,
M_SC_YAE,
M_SC_SHRUG,
M_SPECIAL_BOTTОM
M_SPECIAL_BOTTOM
};