diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2021-07-30 10:07:32 -0400 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-10-07 13:50:13 -0400 |
commit | 493905665c2e9ea200301b44dcee599933f5b62c (patch) | |
tree | 518db9c4a45df4c89d3cc07a341cb52b8aeaee21 /src/yuzu/configuration/configure_debug_tab.cpp | |
parent | fb66a455c4c7c1e196fc1001a52325a33e50b127 (diff) |
configuration: Add const qualifier where able
Diffstat (limited to 'src/yuzu/configuration/configure_debug_tab.cpp')
-rw-r--r-- | src/yuzu/configuration/configure_debug_tab.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/yuzu/configuration/configure_debug_tab.cpp b/src/yuzu/configuration/configure_debug_tab.cpp index 03f266adf5..e126eeea98 100644 --- a/src/yuzu/configuration/configure_debug_tab.cpp +++ b/src/yuzu/configuration/configure_debug_tab.cpp @@ -8,10 +8,9 @@ #include "yuzu/configuration/configure_debug.h" #include "yuzu/configuration/configure_debug_tab.h" -ConfigureDebugTab::ConfigureDebugTab(Core::System& system_, QWidget* parent) +ConfigureDebugTab::ConfigureDebugTab(const Core::System& system_, QWidget* parent) : QWidget(parent), - ui(new Ui::ConfigureDebugTab), system{system_}, debug_tab{std::make_unique<ConfigureDebug>( - system_, this)}, + ui(new Ui::ConfigureDebugTab), debug_tab{std::make_unique<ConfigureDebug>(system_, this)}, cpu_debug_tab{std::make_unique<ConfigureCpuDebug>(system_, this)} { ui->setupUi(this); |