mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-02 16:35:06 +01:00
ebdae19fd2
This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
27 lines
865 B
C++
27 lines
865 B
C++
// Copyright 2016 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#include "citra_qt/configure_debug.h"
|
|
#include "core/settings.h"
|
|
#include "ui_configure_debug.h"
|
|
|
|
ConfigureDebug::ConfigureDebug(QWidget* parent) : QWidget(parent), ui(new Ui::ConfigureDebug) {
|
|
ui->setupUi(this);
|
|
this->setConfiguration();
|
|
}
|
|
|
|
ConfigureDebug::~ConfigureDebug() {}
|
|
|
|
void ConfigureDebug::setConfiguration() {
|
|
ui->toggle_gdbstub->setChecked(Settings::values.use_gdbstub);
|
|
ui->gdbport_spinbox->setEnabled(Settings::values.use_gdbstub);
|
|
ui->gdbport_spinbox->setValue(Settings::values.gdbstub_port);
|
|
}
|
|
|
|
void ConfigureDebug::applyConfiguration() {
|
|
Settings::values.use_gdbstub = ui->toggle_gdbstub->isChecked();
|
|
Settings::values.gdbstub_port = ui->gdbport_spinbox->value();
|
|
Settings::Apply();
|
|
}
|