From 83eed8fd74fdec5cad5c99e23d2ec4999189b57b Mon Sep 17 00:00:00 2001 From: Love Billenius Date: Mon, 29 Jan 2024 16:23:51 +0100 Subject: [PATCH] Count down starts right away --- src/text/OptionScreen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/text/OptionScreen.cpp b/src/text/OptionScreen.cpp index a782b83..8e86793 100644 --- a/src/text/OptionScreen.cpp +++ b/src/text/OptionScreen.cpp @@ -36,7 +36,7 @@ void OptionScreen::update() { void OptionScreen::startCountDown() { auto epochMs = getCurrentEpochTimeMillis(); - nextMsEpoch = epochMs + 1000; + nextMsEpoch = epochMs; hasStartedCounting_ = true; stepsDone = 0; } \ No newline at end of file