From 84f29af04a987026da6acbac162c59874657291f Mon Sep 17 00:00:00 2001 From: extrawurst Date: Thu, 20 Mar 2025 00:04:23 +0100 Subject: [PATCH] gamepad state logging --- src/controls.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controls.rs b/src/controls.rs index 68f26e9..749c288 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); } }