Try to fix last commit
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Andre Henriques 2023-06-26 18:26:43 +01:00
parent 3f07bc498a
commit bb8b2db547

View File

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