Set L/R buttons in tas input, instead of just the analog triggers.

Fixes issue 6613.
This commit is contained in:
Rachel Bryk 2013-09-17 09:56:45 -04:00
parent 302e9c891b
commit ec5cf60f5e
1 changed files with 10 additions and 0 deletions

View File

@ -528,6 +528,16 @@ void TASInputDlg::GetValues(SPADStatus *PadStatus, int controllerID)
else else
PadStatus->button &= ~PAD_BUTTON_START; PadStatus->button &= ~PAD_BUTTON_START;
if(wx_r_button->IsChecked() || rTrig >= 255)
PadStatus->button |= PAD_TRIGGER_R;
else
PadStatus->button &= ~PAD_TRIGGER_R;
if(wx_l_button->IsChecked() || lTrig >= 255)
PadStatus->button |= PAD_TRIGGER_L;
else
PadStatus->button &= ~PAD_TRIGGER_L;
ButtonTurbo(); ButtonTurbo();
} }