Fix display for leading zeros on report by derf.
This commit is contained in:
parent
62825bc3e5
commit
1fda56be1e
|
@ -39,7 +39,7 @@ void ram(void) {
|
|||
lcdPrint(" ");
|
||||
lcdPrint(IntToStr(v,2,0));
|
||||
lcdPrint(".");
|
||||
lcdPrint(IntToStr(mv%1000,3,F_ZEROS));
|
||||
lcdPrint(IntToStr(mv%1000,3,F_ZEROS|F_LONG));
|
||||
lcdPrintln("V");
|
||||
|
||||
lcdNl();
|
||||
|
|
Loading…
Reference in New Issue