fix controllers with no analog sticks

This commit is contained in:
Daryl Borth 2019-01-01 14:34:29 -07:00
parent 242395f20b
commit 997e3bc403

View File

@ -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;