mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-26 21:35:28 +00:00
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;
|
||||
|
||||
case ID_UP:
|
||||
placeholder = wx_start_button;
|
||||
placeholder = wx_up_button;
|
||||
if(DU_turbo)
|
||||
DU_turbo = false;
|
||||
else
|
||||
@ -1008,7 +1008,7 @@ void TASInputDlg::SetTurbo(wxMouseEvent& event)
|
||||
break;
|
||||
|
||||
case ID_DOWN:
|
||||
placeholder = wx_start_button;
|
||||
placeholder = wx_down_button;
|
||||
if(DD_turbo)
|
||||
DD_turbo = false;
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user