mirror of
https://github.com/dborth/snes9xgx.git
synced 2024-11-24 03:29:22 +01:00
fix controllers with no analog sticks
This commit is contained in:
parent
42888f0707
commit
dc4d93d006
@ -133,6 +133,10 @@ s8 GuiTrigger::WPAD_Stick(u8 stick, int axis)
|
||||
center = js->center.x;
|
||||
}
|
||||
|
||||
if(min == max) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (pos > max) return 127;
|
||||
if (pos < min) return -128;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user