Merge pull request #123 from lioncash/tas-bugfix
Fix a case where the wrong placeholders were being assigned for the up and down D-Pad buttons in the TAS dialog.
This commit is contained in:
commit
e7ae1fe9d8
|
@ -1000,7 +1000,7 @@ void TASInputDlg::SetTurbo(wxMouseEvent& event)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ID_UP:
|
case ID_UP:
|
||||||
placeholder = wx_start_button;
|
placeholder = wx_up_button;
|
||||||
if(DU_turbo)
|
if(DU_turbo)
|
||||||
DU_turbo = false;
|
DU_turbo = false;
|
||||||
else
|
else
|
||||||
|
@ -1008,7 +1008,7 @@ void TASInputDlg::SetTurbo(wxMouseEvent& event)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ID_DOWN:
|
case ID_DOWN:
|
||||||
placeholder = wx_start_button;
|
placeholder = wx_down_button;
|
||||||
if(DD_turbo)
|
if(DD_turbo)
|
||||||
DD_turbo = false;
|
DD_turbo = false;
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue