We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c4569d commit c973000Copy full SHA for c973000
src/JTEncode.cpp
@@ -504,25 +504,25 @@ uint8_t JTEncode::ft_code(char c)
504
{
505
return 0;
506
}
507
- else if(c == '+')
+ else if(c == '+')
508
509
- return 38;
+ return 37;
510
511
else if(c == '-')
512
513
- return 39;
+ return 38;
514
515
else if(c == '.')
516
517
- return 40;
+ return 39;
518
519
else if(c == '/')
520
521
- return 41;
+ return 40;
522
523
else if(c == '?')
524
525
- return 42;
+ return 41;
526
527
else
528
0 commit comments