I am sure others have mentioned it but my brain never figured it out.
I have some EFS that seem to really bog down my pc, the cpu isn't maxed but eSignal is sluggish.
I fixed it with a simple IF statement
if(close(0) != close(-1)) {
....
}
This prevents every tick from running the complete efs, i used this in front of my line drawing and the result was nothing short of remarkable.
I have some EFS that seem to really bog down my pc, the cpu isn't maxed but eSignal is sluggish.
I fixed it with a simple IF statement
if(close(0) != close(-1)) {
....
}
This prevents every tick from running the complete efs, i used this in front of my line drawing and the result was nothing short of remarkable.
Comment