| 489 | } |
| 490 | |
| 491 | Key fix_keycode(char32_t p_char, Key p_key) { |
| 492 | if (p_char >= 0x20 && p_char <= 0x7E) { |
| 493 | return (Key)String::char_uppercase(p_char); |
| 494 | } |
| 495 | return p_key; |
| 496 | } |
| 497 | |
| 498 | Key fix_key_label(char32_t p_char, Key p_key) { |
| 499 | if (p_char >= 0x20 && p_char != 0x7F) { |
no outgoing calls
no test coverage detected