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:
mattmenke 2009-02-17 05:02:26 +00:00
parent 87a230f550
commit d01a6ba874
1 changed files with 1 additions and 1 deletions

View File

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