aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorLibravatar Silas Bartha <silas@exvacuum.dev>2023-12-29 18:29:21 -0500
committerLibravatar Silas Bartha <silas@exvacuum.dev>2023-12-29 18:29:21 -0500
commit3fe873c00c9f8e29f02b812e64ceac264fb56cc5 (patch)
tree471149b96f44edeaea8ac7db13230d8888aea26e /src/main.rs
parenta91ff8687607ea35b6ea215482de38b6a79eb0ee (diff)
Limited update loop speed using sleep()
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index af1eea7..992748c 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,6 +1,6 @@
use std::{
sync::{Arc, Mutex},
- time::Duration,
+ time::Duration, thread::sleep,
};
use pausable_clock::{PausableClock, PausableInstant};
@@ -164,5 +164,6 @@ async fn main() -> Result<()> {
.await?;
loop {
pomd.lock().unwrap().update();
+ sleep(Duration::from_millis(100));
}
}