From b8f93beccac42d8e62ac7a5ded55e2fbdee7fd76 Mon Sep 17 00:00:00 2001 From: Oleg Kalachev Date: Mon, 10 Aug 2026 02:31:54 +0300 Subject: [PATCH] Make Rate always trigger on first step --- flix/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flix/util.h b/flix/util.h index f3971aa..fc1b421 100644 --- a/flix/util.h +++ b/flix/util.h @@ -111,7 +111,7 @@ struct Value { class Rate { public: float rate; - float last = 0; + float last = -INFINITY; Rate(float rate) : rate(rate) {} operator bool() {