mirror of
https://github.com/opentx/opentx.git
synced 2025-07-15 04:15:26 +03:00
No special characters in edit fields for CZ language, but enabled in internally defined strings.
It fixes autogenerated Input names.
This commit is contained in:
parent
871e9f0be3
commit
e05a16988f
3 changed files with 7 additions and 2 deletions
|
@ -49,7 +49,7 @@ char idx2char(int8_t idx)
|
|||
if (idx < 37) return '0' + idx - 27;
|
||||
if (idx <= 40) return pgm_read_byte(s_charTab+idx-37);
|
||||
#if LEN_SPECIAL_CHARS > 0
|
||||
if (idx <= ZCHAR_MAX) return 'z' + 5 + idx - 40;
|
||||
if (idx <= (LEN_STD_CHARS + LEN_SPECIAL_CHARS)) return 'z' + 5 + idx - 40;
|
||||
#endif
|
||||
return ' ';
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue