Closed JakeRoggenbuck closed 1 year ago
This is a huge speed up if csv is not enabled. This entire green block doesn't get called.
Better version of #467
I have this fixed in https://github.com/JakeRoggenbuck/auto-clock-speed/pull/461. If we merge now it will cause conflicts. Sorry, I didn't realize yesterday.
I have this fixed in #461. If we merge now it will cause conflicts. Sorry, I didn't realize yesterday.
That's alright, I don't think it will cause because the area where we implement it only overlaps by a line but if you want to have the flag checked like this in your PR, that's alright by me.
We need to make sure that the flag gets checked before the function gets called.
if do_thing {
thing();
}
and not something like this.
fn thing() {
if !do_thing { return; }
}
thing();
The implementations are kinda different.
Fixed in #461
fixes #469