From e96b3159d728157e4aeb88ba1607c004126f4014 Mon Sep 17 00:00:00 2001 From: Xevion Date: Fri, 15 Aug 2025 13:46:57 -0500 Subject: [PATCH] fix: disable vsync --- src/app.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index 3fb6021..227b0c3 100644 --- a/src/app.rs +++ b/src/app.rs @@ -51,7 +51,6 @@ impl App { window .into_canvas() .accelerated() - .present_vsync() .build() .map_err(|e| GameError::Sdl(e.to_string()))?, ));