From bb8b2db547c474f5b6c360225928b161b46e73c4 Mon Sep 17 00:00:00 2001 From: Andre Henriques Date: Mon, 26 Jun 2023 18:26:43 +0100 Subject: [PATCH] Try to fix last commit --- src/render.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; }