Count down starts right away

This commit is contained in:
Love 2024-01-29 16:23:51 +01:00
parent 836ca94e1c
commit 83eed8fd74

View File

@ -36,7 +36,7 @@ void OptionScreen::update() {
void OptionScreen::startCountDown() { void OptionScreen::startCountDown() {
auto epochMs = getCurrentEpochTimeMillis(); auto epochMs = getCurrentEpochTimeMillis();
nextMsEpoch = epochMs + 1000; nextMsEpoch = epochMs;
hasStartedCounting_ = true; hasStartedCounting_ = true;
stepsDone = 0; stepsDone = 0;
} }