From 445d257641320ea6fe0ecd6fd5b3265d3ca1b0d9 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 2 Mar 2014 18:58:54 -0500 Subject: [PATCH] Fix a case where the wrong placeholders were being assigned for the up and down D-Pad buttons in the TAS dialog. --- Source/Core/DolphinWX/TASInputDlg.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/DolphinWX/TASInputDlg.cpp b/Source/Core/DolphinWX/TASInputDlg.cpp index c619e5a70c..06ea4907be 100644 --- a/Source/Core/DolphinWX/TASInputDlg.cpp +++ b/Source/Core/DolphinWX/TASInputDlg.cpp @@ -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