diff options
author | gennyble <gen@nyble.dev> | 2024-12-05 04:51:47 -0600 |
---|---|---|
committer | gennyble <gen@nyble.dev> | 2024-12-05 04:51:47 -0600 |
commit | d85b6a6104185222373a28e3412b87f266ad97fe (patch) | |
tree | 3ccda5a42f5bc8d362a7bf5b59bb2ecf18455ac1 | |
parent | 8b78b4f3102ddc828fd9d6d2f78740827ac90090 (diff) | |
download | really-etches-d85b6a6104185222373a28e3412b87f266ad97fe.tar.gz really-etches-d85b6a6104185222373a28e3412b87f266ad97fe.zip |
Increase rate we check for gallops
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index fdf3e37..093f3bf 100644 --- a/src/main.rs +++ b/src/main.rs @@ -335,7 +335,7 @@ impl ApplicationHandler for Etch { self.next_check = Instant::now(); } - if self.next_gallop_check.elapsed() > Duration::from_millis(100) { + if self.next_gallop_check.elapsed() > Duration::from_millis(25) { while let Some(ge) = self.gallop_x.event() { match ge { GallopEvent::Positive(gdur) => { |