Skip to content
This repository has been archived by the owner on Nov 23, 2023. It is now read-only.

Commit

Permalink
Fixed issue where brake had resistance with no grip
Browse files Browse the repository at this point in the history
  • Loading branch information
patmagauran committed Jan 11, 2022
1 parent 5be6404 commit 51f467d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ForzaDualSense/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ static void SendData(DataPacket data, CsvWriter csv)
lastBrakeResistance = filteredResistance;
if (filteredFreq <= settings.MIN_BRAKE_VIBRATION)
{
p.instructions[0].parameters = new object[] { controllerIndex, Trigger.Left, TriggerMode.Resistance, 0, filteredResistance };
p.instructions[0].parameters = new object[] { controllerIndex, Trigger.Left, TriggerMode.Resistance, 0, 0 };

}
else
Expand Down

0 comments on commit 51f467d

Please sign in to comment.