rosalina: fix temperature display

Added 3 leading spaces to the temperature display format string.
This commit is contained in:
PabloMK7 2021-07-16 18:23:50 +02:00 committed by GitHub
parent 01661bb1e6
commit 352a59fd29
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -344,7 +344,7 @@ static void menuDraw(Menu *menu, u32 selected)
char buf[32];
int n = sprintf(
buf, "%02hhu\xF8""C %lu.%02luV %lu.%lu%%", batteryTemperature, // CP437
buf, " %02hhu\xF8""C %lu.%02luV %lu.%lu%%", batteryTemperature, // CP437
voltageInt, voltageFrac,
percentageInt, percentageFrac
);