Make Rate always trigger on first step

This commit is contained in:
Oleg Kalachev
2026-08-10 02:31:54 +03:00
parent 5fc2143994
commit b8f93becca
+1 -1
View File
@@ -111,7 +111,7 @@ struct Value {
class Rate { class Rate {
public: public:
float rate; float rate;
float last = 0; float last = -INFINITY;
Rate(float rate) : rate(rate) {} Rate(float rate) : rate(rate) {}
operator bool() { operator bool() {