fixed the analogue config bug ( at least for me o.o )
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2157 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
a85f92c8d1
commit
128313cdea
|
@ -252,7 +252,7 @@ bool AvoidValues(int value)
|
||||||
{
|
{
|
||||||
// Avoid detecting very small or very big (for triggers) values
|
// Avoid detecting very small or very big (for triggers) values
|
||||||
if( (value > -0x2000 && value < 0x2000) // Small values
|
if( (value > -0x2000 && value < 0x2000) // Small values
|
||||||
|| (value < -0x6000 || value > 0x6000)) // Big values
|
|| (value < -0x6000 && value > 0x6000)) // Big values
|
||||||
return true; // Avoid
|
return true; // Avoid
|
||||||
else
|
else
|
||||||
return false; // Keep
|
return false; // Keep
|
||||||
|
|
Loading…
Reference in New Issue