From f43fae48f00745c1bac4d26e114329762c07cc02 Mon Sep 17 00:00:00 2001 From: extrawurst Date: Thu, 20 Mar 2025 22:41:48 +0100 Subject: [PATCH] silence debug print --- src/controls.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controls.rs b/src/controls.rs index 749c288..68f26e9 100644 --- a/src/controls.rs +++ b/src/controls.rs @@ -98,7 +98,7 @@ fn gamepad_controls( .map(|last_state| *last_state != state) .unwrap_or(true) { - info!("gamepad state changed: {:?}", state); + // info!("gamepad state changed: {:?}", state); controls.gamepad_state = Some(state); } }