Fix L/R Trigger hypersensitivity

This commit is contained in:
Phillip Stephens 2017-12-21 18:15:30 -08:00
parent 02dc5a2a97
commit 867665cc78
1 changed files with 1 additions and 1 deletions

View File

@ -250,7 +250,7 @@ static void pad_clamptrigger(int16_t& trigger)
else else
{ {
if (max < trigger) if (max < trigger)
trigger = max - min; trigger = max;
trigger -= min; trigger -= min;
} }
} }