DolphinQt: Add settings to GBA TAS input window

We should expose Enable Controller Input and the turbo settings for
GBA just like we do for GameCube controllers and Wii Remotes.
I just forgot about it when implementing the GBA TAS input window.
This commit is contained in:
JosJuice 2022-12-24 11:30:25 +01:00
parent 54a6c4a90d
commit 494b041b34
1 changed files with 1 additions and 0 deletions

View File

@ -69,6 +69,7 @@ GBATASInputWindow::GBATASInputWindow(QWidget* parent, int controller_id)
auto* layout = new QVBoxLayout;
layout->addWidget(buttons_box);
layout->addWidget(m_settings_box);
setLayout(layout);
}