align cpu id to right

This commit is contained in:
Christian Hesse 2020-09-01 13:50:25 +02:00 committed by cgzones
parent d2b3a7a375
commit f805093589
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ static void CPUMeter_init(Meter* this) {
int cpu = this->param;
if (this->pl->cpuCount > 1) {
char caption[10];
xSnprintf(caption, sizeof(caption), "%-3d", Settings_cpuId(this->pl->settings, cpu - 1));
xSnprintf(caption, sizeof(caption), "%3d", Settings_cpuId(this->pl->settings, cpu - 1));
Meter_setCaption(this, caption);
}
if (this->param == 0)