From 803f45229efe6f7a36142f7a2260edf092b35183 Mon Sep 17 00:00:00 2001 From: Djuri Baars Date: Sat, 7 Oct 2023 12:22:32 +0200 Subject: [PATCH] Made halving countdown text consistent with rest --- src/screens/halvingcountdown.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/screens/halvingcountdown.cpp b/src/screens/halvingcountdown.cpp index dc4d7e4..67b43f3 100644 --- a/src/screens/halvingcountdown.cpp +++ b/src/screens/halvingcountdown.cpp @@ -23,8 +23,8 @@ void HalvingCountdownScreen::showScreen() int mins = floor(minutesToHalving - (years * 525600) - (days * (24*60)) - (hours * 60)); // int secs = floor((minutesToHalving - (years * 525600) - (days * (24*60)) - (hours * 60) - mins) * 60); - epdContent[0] = "BIT/HALV"; - epdContent[1] = "COIN/ING"; + epdContent[0] = "BIT/COIN"; + epdContent[1] = "HALV/ING"; epdContent[2] = String(years) + "/YRS"; epdContent[3] = String(days) + "/DAYS"; epdContent[4] = String(hours) + "/HRS";