Make Rate always trigger on first step

This commit is contained in:
Oleg Kalachev
2026-08-11 05:01:02 +03:00
parent 070eb8a0de
commit 3f4577bb2c
+1 -1
View File
@@ -68,7 +68,7 @@ public:
class Rate {
public:
float rate;
float last = 0;
float last = -INFINITY;
Rate(float rate) : rate(rate) {}
operator bool() {