summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Src/FrameTools.cpp
diff options
context:
space:
mode:
authorRachel Bryk <RachelBryk@gmail.com>2013-07-23 20:43:51 -0400
committerRachel Bryk <RachelBryk@gmail.com>2013-07-23 20:43:51 -0400
commit3f03588decc18ddb4441cd6480eb36885eae7f8a (patch)
treec9c6ef31df44362842639add44f1476f443b5968 /Source/Core/DolphinWX/Src/FrameTools.cpp
parentec148008d0638ea4eafffd6bf95706e8d3507c5e (diff)
Tas input works with bongos too.
Diffstat (limited to 'Source/Core/DolphinWX/Src/FrameTools.cpp')
-rw-r--r--Source/Core/DolphinWX/Src/FrameTools.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DolphinWX/Src/FrameTools.cpp b/Source/Core/DolphinWX/Src/FrameTools.cpp
index 5409e98f6a..1c70b4e715 100644
--- a/Source/Core/DolphinWX/Src/FrameTools.cpp
+++ b/Source/Core/DolphinWX/Src/FrameTools.cpp
@@ -649,9 +649,9 @@ void CFrame::OnTASInput(wxCommandEvent& event)
{
std::string number[4] = {"1","2","3","4"};
- for(int i = 0; i < 4; i++)
+ for (int i = 0; i < 4; ++i)
{
- if(SConfig::GetInstance().m_SIDevice[i] == SIDEVICE_GC_CONTROLLER)
+ if (SConfig::GetInstance().m_SIDevice[i] == SIDEVICE_GC_CONTROLLER || SConfig::GetInstance().m_SIDevice[i] == SIDEVICE_GC_TARUKONGA)
{
g_TASInputDlg[i]->Show(true);
g_TASInputDlg[i]->SetTitle("TAS Input - Controller " + number[i]);