Decreased skip time
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Andre Henriques 2023-03-19 11:44:24 +00:00
parent 9a657d41e2
commit f8e2aa91ea

View File

@ -317,7 +317,7 @@ impl Render {
self.last = data.clone();
}
if time - self.last_update < 50 {
if time - self.last_update == 0 {
println!("To Fast! Skiping");
return;
}