READY directly after END

This commit is contained in:
Patrick Haßel 2025-03-13 00:22:03 +01:00
parent 23b582c4ba
commit 5fc270fe8d

View File

@ -90,6 +90,7 @@ void setState(State newState) {
name = "PAUSED";
break;
case END:
drawSequence();
name = "END";
break;
default:
@ -112,8 +113,8 @@ void countdownUpdate() {
const auto color = rest >= 60000 ? WHITE : (rest >= 10000 ? YELLOW : RED);
drawMillis(rest, color);
} else {
drawSequence();
setState(END);
setState(READY);
}
break;
}