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:
daco65 2009-02-08 19:23:25 +00:00
parent a85f92c8d1
commit 128313cdea
1 changed files with 1 additions and 1 deletions

View File

@ -252,7 +252,7 @@ bool AvoidValues(int value)
{
// Avoid detecting very small or very big (for triggers) values
if( (value > -0x2000 && value < 0x2000) // Small values
|| (value < -0x6000 || value > 0x6000)) // Big values
|| (value < -0x6000 && value > 0x6000)) // Big values
return true; // Avoid
else
return false; // Keep