USB: Don't remap R1/L1 to R2/L2 for Driving Force wheel

This commit is contained in:
jackun 2021-02-22 14:16:36 +02:00
parent 14edc2246e
commit edf3b43e2f
1 changed files with 0 additions and 16 deletions

View File

@ -160,22 +160,6 @@ namespace usb_pad
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;
}