mirror of
https://github.com/citra-emu/citra.git
synced 2025-07-02 05:30:11 +00:00
A change in gdbstub config
This commit is contained in:
parent
4ae58422b3
commit
e5ac28cd0c
@ -136,7 +136,7 @@ void Config::ReadValues() {
|
|||||||
qt_config->endGroup();
|
qt_config->endGroup();
|
||||||
|
|
||||||
qt_config->beginGroup("Debugging");
|
qt_config->beginGroup("Debugging");
|
||||||
Settings::values.use_gdbstub = qt_config->value("use_gdbstub", false).toBool();
|
Settings::values.use_gdbstub = false;
|
||||||
Settings::values.gdbstub_port = qt_config->value("gdbstub_port", 24689).toInt();
|
Settings::values.gdbstub_port = qt_config->value("gdbstub_port", 24689).toInt();
|
||||||
qt_config->endGroup();
|
qt_config->endGroup();
|
||||||
|
|
||||||
@ -289,7 +289,6 @@ void Config::SaveValues() {
|
|||||||
qt_config->endGroup();
|
qt_config->endGroup();
|
||||||
|
|
||||||
qt_config->beginGroup("Debugging");
|
qt_config->beginGroup("Debugging");
|
||||||
qt_config->setValue("use_gdbstub", Settings::values.use_gdbstub);
|
|
||||||
qt_config->setValue("gdbstub_port", Settings::values.gdbstub_port);
|
qt_config->setValue("gdbstub_port", Settings::values.gdbstub_port);
|
||||||
qt_config->endGroup();
|
qt_config->endGroup();
|
||||||
|
|
||||||
|
@ -33,6 +33,9 @@
|
|||||||
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
<layout class="QHBoxLayout" name="horizontalLayout_3">
|
||||||
<item>
|
<item>
|
||||||
<widget class="QCheckBox" name="toggle_gdbstub">
|
<widget class="QCheckBox" name="toggle_gdbstub">
|
||||||
|
<property name="toolTip">
|
||||||
|
<string><html><head/><body><p>GDB Stub enable you to debug Games/3DS Apps with a remote GDB Debugger. It contains basical function but some problems still exist. Unselect it if you don't need it.</p></body></html></string>
|
||||||
|
</property>
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Enable GDB Stub</string>
|
<string>Enable GDB Stub</string>
|
||||||
</property>
|
</property>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user