removed limit on refresh rate
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Andre Henriques 2023-04-15 16:30:18 +01:00
parent 9ce96269df
commit cf7bf93a48

View File

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