Skip to content

Commit

Permalink
fix deadzone value casting to int instead of double
Browse files Browse the repository at this point in the history
  • Loading branch information
komefai committed Mar 5, 2018
1 parent 509c48d commit 658584b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion PS4Macro/Forms/RemapperForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ private void decayRateNumericUpDown_ValueChanged(object sender, EventArgs e)

private void decayThresholdNumericUpDown_ValueChanged(object sender, EventArgs e)
{
Remapper.MouseDecayThreshold = (int)decayThresholdNumericUpDown.Value;
Remapper.MouseDecayThreshold = (double)decayThresholdNumericUpDown.Value;
}

private void deadzoneNumericUpDown_ValueChanged(object sender, EventArgs e)
Expand Down

0 comments on commit 658584b

Please sign in to comment.