mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
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:
parent
c028513285
commit
445d257641
@ -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…
Reference in New Issue
Block a user