mirror of
https://github.com/opentx/opentx.git
synced 2025-07-14 20:10:08 +03:00
Revert
This commit is contained in:
parent
cc5838ad49
commit
2a0c884b2a
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