1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-20 06:45:10 +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:
mhotar 2014-09-13 01:26:49 +02:00 committed by bsongis
parent 871e9f0be3
commit e05a16988f
3 changed files with 7 additions and 2 deletions

View file

@ -627,7 +627,12 @@ extern uint8_t pxxFlag[NUM_MODULES];
#define PXX_SEND_RANGECHECK (1 << 5)
#define LEN_STD_CHARS 40
#if defined(TRANSLATIONS_CZ)
#define ZCHAR_MAX (LEN_STD_CHARS)
#else
#define ZCHAR_MAX (LEN_STD_CHARS + LEN_SPECIAL_CHARS)
#endif
char idx2char(int8_t idx);
#if defined(CPUARM) || defined(SIMU)