Made halving countdown text consistent with rest

This commit is contained in:
Djuri Baars 2023-10-07 12:22:32 +02:00
parent ea4c4ef6ef
commit 803f45229e

View File

@ -23,8 +23,8 @@ void HalvingCountdownScreen::showScreen()
int mins = floor(minutesToHalving - (years * 525600) - (days * (24*60)) - (hours * 60)); int mins = floor(minutesToHalving - (years * 525600) - (days * (24*60)) - (hours * 60));
// int secs = floor((minutesToHalving - (years * 525600) - (days * (24*60)) - (hours * 60) - mins) * 60); // int secs = floor((minutesToHalving - (years * 525600) - (days * (24*60)) - (hours * 60) - mins) * 60);
epdContent[0] = "BIT/HALV"; epdContent[0] = "BIT/COIN";
epdContent[1] = "COIN/ING"; epdContent[1] = "HALV/ING";
epdContent[2] = String(years) + "/YRS"; epdContent[2] = String(years) + "/YRS";
epdContent[3] = String(days) + "/DAYS"; epdContent[3] = String(days) + "/DAYS";
epdContent[4] = String(hours) + "/HRS"; epdContent[4] = String(hours) + "/HRS";