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() {
auto epochMs = getCurrentEpochTimeMillis();
nextMsEpoch = epochMs + 1000;
nextMsEpoch = epochMs;
hasStartedCounting_ = true;
stepsDone = 0;
}