diff --git a/src/render.rs b/src/render.rs index 520ef85..0d80676 100644 --- a/src/render.rs +++ b/src/render.rs @@ -343,8 +343,8 @@ impl Render { self.last = data.clone(); } - if time - self.last_update < 33 { - println!("To Fast! Skiping"); + if (time - self.last_update) < 33 { + println!("To Fast! Skiping, {} - {} = {}", time, self.last_update, time - self.last_update); return; }