Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
delroth committed Mar 3, 2014
2 parents c028513 + 445d257 commit e7ae1fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/DolphinWX/TASInputDlg.cpp
Expand Up @@ -1000,15 +1000,15 @@ void TASInputDlg::SetTurbo(wxMouseEvent& event)
break;

case ID_UP:
placeholder = wx_start_button;
placeholder = wx_up_button;
if(DU_turbo)
DU_turbo = false;
else
DU_turbo = true;
break;

case ID_DOWN:
placeholder = wx_start_button;
placeholder = wx_down_button;
if(DD_turbo)
DD_turbo = false;
else
Expand Down

0 comments on commit e7ae1fe

Please sign in to comment.