This commit is contained in:
FlatOutPS2 2016-11-14 13:55:55 +01:00
parent d1788ac1e9
commit 8db9a27970
1 changed files with 4 additions and 4 deletions

View File

@ -1230,10 +1230,10 @@ u8 CALLBACK PADpoll(u8 value)
if (config.padConfigs[query.port][query.slot].type == MousePad) { if (config.padConfigs[query.port][query.slot].type == MousePad) {
u8 b1 = 0xFC; u8 b1 = 0xFC;
if (sum->buttons[5 + 4] > 0) // Left button if (sum->buttons[9] > 0) // Left button
b1 -= 2 << 2; b1 -= 8;
if (sum->buttons[6 + 4] > 0) // Right button if (sum->buttons[10] > 0) // Right button
b1 -= 2 << 1; b1 -= 4;
query.response[3] = 0xFF; query.response[3] = 0xFF;
query.response[4] = b1; query.response[4] = b1;