Merge pull request #1657 from mariohackandglitch/master

rosalina: fix temperature display
This commit is contained in:
TuxSH 2021-07-16 17:39:20 +01:00 committed by GitHub
commit 689de1b9f0
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
);