about summary refs log tree commit diff
path: root/src/main.rs
diff options
context:
space:
mode:
authorgennyble <gen@nyble.dev>2024-12-05 04:51:47 -0600
committergennyble <gen@nyble.dev>2024-12-05 04:51:47 -0600
commitd85b6a6104185222373a28e3412b87f266ad97fe (patch)
tree3ccda5a42f5bc8d362a7bf5b59bb2ecf18455ac1 /src/main.rs
parent8b78b4f3102ddc828fd9d6d2f78740827ac90090 (diff)
downloadreally-etches-d85b6a6104185222373a28e3412b87f266ad97fe.tar.gz
really-etches-d85b6a6104185222373a28e3412b87f266ad97fe.zip
Increase rate we check for gallops
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
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) => {