FLM: Fixed bug where total deltas were not set to zero.

This commit is contained in:
General4878 2025-09-13 19:07:33 +02:00
parent c536393054
commit a0243c74a6

View file

@ -71,7 +71,7 @@ namespace SteamController.Devices
// Reset gesture state
gestureCommitted = false;
totalDeltaX = totalDeltaY;
totalDeltaX = totalDeltaY = 0;
return;
}