mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-13 07:49:19 +01: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;
|
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…
x
Reference in New Issue
Block a user