~ecs/public-inbox

don't reset the timer on short press, actually v3 APPLIED

Evan Johnston: 1
 don't reset the timer on short press, actually

 1 files changed, 1 insertions(+), 1 deletions(-)
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.sr.ht/~ecs/public-inbox/patches/48049/mbox | git am -3
Learn more about email & git

[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