mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-14 02:38:04 -05:00
Add more stuff to configure.
This commit is contained in:
@ -2,13 +2,12 @@
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#include "core/core.h"
|
||||
#include "core/gdbstub/gdbstub.h" // TODO: can't include gdbstub without core.h
|
||||
#include "core/settings.h"
|
||||
|
||||
#include "configure_debug.h"
|
||||
#include "citra_qt/configure_debug.h"
|
||||
#include "ui_configure_debug.h"
|
||||
|
||||
#include "core/gdbstub/gdbstub.h"
|
||||
#include "core/settings.h"
|
||||
|
||||
ConfigureDebug::ConfigureDebug(QWidget *parent) :
|
||||
QWidget(parent),
|
||||
ui(new Ui::ConfigureDebug)
|
||||
@ -18,16 +17,16 @@ ConfigureDebug::ConfigureDebug(QWidget *parent) :
|
||||
}
|
||||
|
||||
ConfigureDebug::~ConfigureDebug() {
|
||||
delete ui;
|
||||
}
|
||||
|
||||
void ConfigureDebug::setConfiguration() {
|
||||
ui->toogleGDBStub->setChecked(Settings::values.use_gdbstub);
|
||||
ui->GDBPortSpinBox->setValue(Settings::values.gdbstub_port);
|
||||
ui->toogle_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() {
|
||||
GDBStub::ToggleServer(ui->toogleGDBStub->isChecked());
|
||||
Settings::values.use_gdbstub = ui->toogleGDBStub->isChecked();
|
||||
Settings::values.gdbstub_port = ui->GDBPortSpinBox->value();
|
||||
GDBStub::ToggleServer(ui->toogle_gdbstub->isChecked());
|
||||
Settings::values.use_gdbstub = ui->toogle_gdbstub->isChecked();
|
||||
Settings::values.gdbstub_port = ui->gdbport_spinbox->value();
|
||||
}
|
||||
|
Reference in New Issue
Block a user