Fixed air quality amounts being off by a few orders of magnitude

main
Avamander 2021-12-04 20:09:37 +07:00
parent 3eebe66d65
commit 5f50f0e538
1 changed files with 1 additions and 1 deletions

@ -125,7 +125,7 @@ std::unique_ptr<Screen> Weather::CreateScreenAir() {
"%llu\n" "%llu\n"
"%lu\n", "%lu\n",
current->polluter.c_str(), current->polluter.c_str(),
current->amount, (current->amount / 100),
current->timestamp, current->timestamp,
current->expires); current->expires);
} }