[PATCH v3] don't reset the timer on short press, actually
Export this patch
---
main.ha | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/main.ha b/main.ha
index 311e090..a97a95c 100644
--- a/main.ha
+++ b/main.ha
@@ -97,7 +97,7 @@ export fn main() void = {
if (raylib::GetTime() - timer_state.inspection_since > 17f64) timer_state.result = DNF;
} else {
timer_state.state = state::INSPECTION;
- timer_state.inspection_since = timer_state.since;
+ timer_state.since = timer_state.inspection_since;
};
};
case state::SOLVING =>
--
2.37.1
Thanks!
To git@git.d2evs.net:~ecs/ecstimer
02eae97..8a1687a master -> master
Pushed along with your previous patch and some fixes