1786005690

This commit is contained in:
2026-08-06 10:41:30 +02:00
parent 2075a4b1ac
commit 80208d369c

View File

@@ -41,7 +41,7 @@ impl Trekstor {
self.current_time = Instant::now();
let dt = self.current_time - self.last_time;
println!("FPS: {}", dt.as_millis());
println!("FPS: {}", 1.0 / dt.as_secs_f64());
if !update(&mut self.screen, &self.input) {
return;