From a0243c74a65ccbc5ba2b5efb2872ceafff686ed0 Mon Sep 17 00:00:00 2001 From: General4878 Date: Sat, 13 Sep 2025 19:07:33 +0200 Subject: [PATCH] FLM: Fixed bug where total deltas were not set to zero. --- SteamController/Devices/MouseControllerFauxLizard.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SteamController/Devices/MouseControllerFauxLizard.cs b/SteamController/Devices/MouseControllerFauxLizard.cs index 8c997a6..9b20642 100644 --- a/SteamController/Devices/MouseControllerFauxLizard.cs +++ b/SteamController/Devices/MouseControllerFauxLizard.cs @@ -71,7 +71,7 @@ namespace SteamController.Devices // Reset gesture state gestureCommitted = false; - totalDeltaX = totalDeltaY; + totalDeltaX = totalDeltaY = 0; return; }