mirror of
https://github.com/opentx/opentx.git
synced 2025-07-14 03:49:52 +03:00
Again
This commit is contained in:
parent
2a0c884b2a
commit
84bf2aa0bf
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ int8_t char2zchar(char c)
|
|||
#endif
|
||||
if (c >= 'a') return 'a' - c - 1;
|
||||
if (c >= 'A') return c - 'A' + 1;
|
||||
if (c >= '0') return -(c - '0' + 27);
|
||||
if (c >= '0') return c - '0' + 27;
|
||||
if (c == '-') return 38;
|
||||
if (c == '.') return 39;
|
||||
if (c == ',') return 40;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue