mirror of https://github.com/PCSX2/pcsx2.git
Left axis bug with last commit fixed.
git-svn-id: http://pcsx2.googlecode.com/svn/trunk@516 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
87a230f550
commit
d01a6ba874
|
@ -226,7 +226,7 @@ void AddForce(ButtonSum *sum, u8 cmd, int delta = 255) {
|
|||
else if (cmd < 0x20) {
|
||||
sum->buttons[cmd-0x10-4] += delta;
|
||||
}
|
||||
else if (cmd < 0x28) {
|
||||
else if (cmd < 0x24) {
|
||||
if (cmd == 32) {
|
||||
sum->sticks[2].vert -= delta;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue