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 6781693617
commit 4b1d8c99d8

View file

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