diff options
Diffstat (limited to 'src/citra_qt/configure_debug.cpp')
| -rw-r--r-- | src/citra_qt/configure_debug.cpp | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/citra_qt/configure_debug.cpp b/src/citra_qt/configure_debug.cpp index fa57a7f72..dcc398eee 100644 --- a/src/citra_qt/configure_debug.cpp +++ b/src/citra_qt/configure_debug.cpp | |||
| @@ -3,20 +3,15 @@ | |||
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include "citra_qt/configure_debug.h" | 5 | #include "citra_qt/configure_debug.h" |
| 6 | #include "ui_configure_debug.h" | ||
| 7 | |||
| 8 | #include "core/settings.h" | 6 | #include "core/settings.h" |
| 7 | #include "ui_configure_debug.h" | ||
| 9 | 8 | ||
| 10 | ConfigureDebug::ConfigureDebug(QWidget *parent) : | 9 | ConfigureDebug::ConfigureDebug(QWidget* parent) : QWidget(parent), ui(new Ui::ConfigureDebug) { |
| 11 | QWidget(parent), | ||
| 12 | ui(new Ui::ConfigureDebug) | ||
| 13 | { | ||
| 14 | ui->setupUi(this); | 10 | ui->setupUi(this); |
| 15 | this->setConfiguration(); | 11 | this->setConfiguration(); |
| 16 | } | 12 | } |
| 17 | 13 | ||
| 18 | ConfigureDebug::~ConfigureDebug() { | 14 | ConfigureDebug::~ConfigureDebug() {} |
| 19 | } | ||
| 20 | 15 | ||
| 21 | void ConfigureDebug::setConfiguration() { | 16 | void ConfigureDebug::setConfiguration() { |
| 22 | ui->toggle_gdbstub->setChecked(Settings::values.use_gdbstub); | 17 | ui->toggle_gdbstub->setChecked(Settings::values.use_gdbstub); |