|
|
|
@ -27,12 +27,11 @@
|
|
|
|
|
#include "yuzu/hotkeys.h"
|
|
|
|
|
#include "yuzu/uisettings.h"
|
|
|
|
|
|
|
|
|
|
ConfigureDialog::ConfigureDialog(QWidget* parent, HotkeyRegistry& registry,
|
|
|
|
|
ConfigureDialog::ConfigureDialog(QWidget* parent, HotkeyRegistry& registry_,
|
|
|
|
|
InputCommon::InputSubsystem* input_subsystem,
|
|
|
|
|
Core::System& system_)
|
|
|
|
|
: QDialog(parent), ui{std::make_unique<Ui::ConfigureDialog>()},
|
|
|
|
|
registry(registry), system{system_}, audio_tab{std::make_unique<ConfigureAudio>(system_,
|
|
|
|
|
this)},
|
|
|
|
|
: QDialog(parent), ui{std::make_unique<Ui::ConfigureDialog>()}, registry{registry_},
|
|
|
|
|
system{system_}, audio_tab{std::make_unique<ConfigureAudio>(system_, this)},
|
|
|
|
|
cpu_tab{std::make_unique<ConfigureCpu>(system_, this)},
|
|
|
|
|
debug_tab_tab{std::make_unique<ConfigureDebugTab>(system_, this)},
|
|
|
|
|
filesystem_tab{std::make_unique<ConfigureFilesystem>(this)},
|
|
|
|
|