mirror of https://github.com/AxioDL/boo.git
Fix L/R Trigger hypersensitivity
This commit is contained in:
parent
02dc5a2a97
commit
867665cc78
|
@ -250,7 +250,7 @@ static void pad_clamptrigger(int16_t& trigger)
|
|||
else
|
||||
{
|
||||
if (max < trigger)
|
||||
trigger = max - min;
|
||||
trigger = max;
|
||||
trigger -= min;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue