mirror of https://github.com/PCSX2/pcsx2.git
USB: Don't remap R1/L1 to R2/L2 for Driving Force wheel
This commit is contained in:
parent
14edc2246e
commit
edf3b43e2f
|
@ -160,22 +160,6 @@ namespace usb_pad
|
||||||
return PAD_BUTTON_COUNT; //Aka invalid
|
return PAD_BUTTON_COUNT; //Aka invalid
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else if (type == WT_GENERIC)
|
|
||||||
{
|
|
||||||
switch (inBtn)
|
|
||||||
{
|
|
||||||
case PAD_R1:
|
|
||||||
return PAD_R2;
|
|
||||||
case PAD_R2:
|
|
||||||
return PAD_R1;
|
|
||||||
case PAD_L1:
|
|
||||||
return PAD_L2;
|
|
||||||
case PAD_L2:
|
|
||||||
return PAD_L1;
|
|
||||||
default:
|
|
||||||
return inBtn;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return inBtn;
|
return inBtn;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue