diff --git a/src/main/osd/osd.c b/src/main/osd/osd.c index 6750fa3705..bcee80de55 100644 --- a/src/main/osd/osd.c +++ b/src/main/osd/osd.c @@ -565,8 +565,7 @@ static uint8_t osdShowStats(uint16_t endBatteryVoltage, int statsRowCount) if (batteryConfig()->currentMeterSource != CURRENT_METER_NONE) { if (osdStatGetState(OSD_STAT_MAX_CURRENT)) { - itoa(stats.max_current, buff, 10); - strcat(buff, "A"); + tfp_sprintf(buff, "%d%c", stats.max_current, SYM_AMP); osdDisplayStatisticLabel(top++, "MAX CURRENT", buff); }