diff --git a/src/main/io/osd.c b/src/main/io/osd.c index c668198a6..6c2775204 100755 --- a/src/main/io/osd.c +++ b/src/main/io/osd.c @@ -461,7 +461,7 @@ static void osdDrawSingleElement(uint8_t item) { uint16_t cellV = getBatteryVoltage() * 10 / getBatteryCellCount(); buff[0] = SYM_BATT_5; - tfp_sprintf(buff + 1, "%d.%dV", cellV / 100, cellV % 100); + tfp_sprintf(buff + 1, "%d.%02dV", cellV / 100, cellV % 100); break; }