From 494b041b34bad661d91bdea4efc707e62aaa9e05 Mon Sep 17 00:00:00 2001 From: JosJuice Date: Sat, 24 Dec 2022 11:30:25 +0100 Subject: [PATCH] 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. --- Source/Core/DolphinQt/TAS/GBATASInputWindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/DolphinQt/TAS/GBATASInputWindow.cpp b/Source/Core/DolphinQt/TAS/GBATASInputWindow.cpp index d963308ca1..f6eb55b701 100644 --- a/Source/Core/DolphinQt/TAS/GBATASInputWindow.cpp +++ b/Source/Core/DolphinQt/TAS/GBATASInputWindow.cpp @@ -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); }