Fix display for leading zeros on report by derf.

This commit is contained in:
Stefan `Sec` Zehl 2012-01-28 18:20:51 +01:00
parent 62825bc3e5
commit 1fda56be1e
1 changed files with 1 additions and 1 deletions

View File

@ -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();