I2Hex now returns lower cased letters to conform with FTN mailer standards
This commit is contained in:
parent
99c9fec21e
commit
6df04fce4d
|
@ -172,7 +172,7 @@ Begin
|
||||||
While Num <> 0 Do Begin
|
While Num <> 0 Do Begin
|
||||||
Ch := Chr(48 + Byte(Num) AND $0F);
|
Ch := Chr(48 + Byte(Num) AND $0F);
|
||||||
|
|
||||||
If Ch > '9' Then Inc (Ch, 7);
|
If Ch > '9' Then Inc (Ch, 39);
|
||||||
|
|
||||||
Result[Idx] := Ch;
|
Result[Idx] := Ch;
|
||||||
Dec (Idx);
|
Dec (Idx);
|
||||||
|
|
Loading…
Reference in New Issue