mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 05:38:50 +00:00
Tas input works with bongos too.
This commit is contained in:
parent
ec148008d0
commit
3f03588dec
3 changed files with 3 additions and 7 deletions
|
@ -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]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue